diff options
Diffstat (limited to 'nix/runExecline')
-rw-r--r-- | nix/runExecline/default.nix | 2 | ||||
-rw-r--r-- | nix/runExecline/tests.nix | 19 |
2 files changed, 2 insertions, 19 deletions
diff --git a/nix/runExecline/default.nix b/nix/runExecline/default.nix index 0b87b1366d27..22d968a1c643 100644 --- a/nix/runExecline/default.nix +++ b/nix/runExecline/default.nix @@ -8,7 +8,7 @@ let tests = import ./tests.nix { inherit runExecline; - inherit (depot.nix) getBins; + inherit (depot.nix) getBins writeScript; inherit (pkgs) stdenv coreutils; inherit pkgs; }; diff --git a/nix/runExecline/tests.nix b/nix/runExecline/tests.nix index cd7f4220b0e3..a8f91f3cf3ae 100644 --- a/nix/runExecline/tests.nix +++ b/nix/runExecline/tests.nix @@ -1,4 +1,4 @@ -{ stdenv, pkgs, runExecline, getBins +{ stdenv, pkgs, runExecline, getBins, writeScript # https://www.mail-archive.com/skaware@list.skarnet.org/msg01256.html , coreutils }: @@ -19,23 +19,6 @@ let "s6-test" ]; - # lol - writeScript = name: script: runExecline name { - derivationArgs = { - inherit script; - passAsFile = [ "script" ]; - preferLocalBuild = true; - allowSubstitutes = false; - }; - } [ - "importas" "-ui" "s" "scriptPath" - "importas" "-ui" "out" "out" - "foreground" [ - bins.mv "$s" "$out" - ] - bins.s6-chmod "0755" "$out" - ]; - # execline block of depth 1 block = args: builtins.map (arg: " ${arg}") args ++ [ "" ]; |