From 5538e19c8295963f612cc6ac4cc048d9528fb40d Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 17 Apr 2026 15:17:24 +0200 Subject: [PATCH] move justfiles to scripts/ --- flake.nix | 13 ++++++++++++- just | 1 - fail.just => scripts/fail.just | 0 mars.just => scripts/mars.just | 0 nixos.just => scripts/nixos.just | 0 wasm.just => scripts/wasm.just | 0 6 files changed, 12 insertions(+), 2 deletions(-) delete mode 120000 just rename fail.just => scripts/fail.just (100%) rename mars.just => scripts/mars.just (100%) rename nixos.just => scripts/nixos.just (100%) rename wasm.just => scripts/wasm.just (100%) diff --git a/flake.nix b/flake.nix index d05cca1..92ea817 100644 --- a/flake.nix +++ b/flake.nix @@ -128,6 +128,15 @@ rec { pyyaml ]); + # perl = pkgs.perl.withPackages (p: + # with p; [ + # # Those are already installed system-wide + # # PLS + # # PerlTidy + # + # NetOpenSSH + # ]); + libpcl = stdenv.mkDerivation rec { pname = "libpcl1"; version = "1.12-2"; @@ -384,6 +393,8 @@ rec { wamrc fail-bin + # perl + # Don't install to not pollute our PATH. Just export as environment variable. # wasi-sdk # libiwasm_debug @@ -466,7 +477,7 @@ rec { # Dynamic libraries from buildinputs: # LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs; - JUST_JUSTFILE = "./nixos.just"; + JUST_JUSTFILE = "./scripts/nixos.just"; # Those are read by the justfile FAIL_SHARE = "${fail-bin}/share"; diff --git a/just b/just deleted file mode 120000 index 97d9fc8..0000000 --- a/just +++ /dev/null @@ -1 +0,0 @@ -./just-bin/just \ No newline at end of file diff --git a/fail.just b/scripts/fail.just similarity index 100% rename from fail.just rename to scripts/fail.just diff --git a/mars.just b/scripts/mars.just similarity index 100% rename from mars.just rename to scripts/mars.just diff --git a/nixos.just b/scripts/nixos.just similarity index 100% rename from nixos.just rename to scripts/nixos.just diff --git a/wasm.just b/scripts/wasm.just similarity index 100% rename from wasm.just rename to scripts/wasm.just