diff options
Diffstat (limited to 'tests/build-hook.nix.in')
-rw-r--r-- | tests/build-hook.nix.in | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/build-hook.nix.in b/tests/build-hook.nix.in deleted file mode 100644 index 697cab81e104..000000000000 --- a/tests/build-hook.nix.in +++ /dev/null @@ -1,28 +0,0 @@ -let { - - input1 = derivation { - name = "build-hook-input-1"; - system = "@system@"; - builder = "@shell@"; - args = ["-e" "-x" ./dependencies.builder1.sh]; - PATH = "@testPath@"; - }; - - input2 = derivation { - name = "build-hook-input-2"; - system = "@system@"; - builder = "@shell@"; - args = ["-e" "-x" ./dependencies.builder2.sh]; - PATH = "@testPath@"; - }; - - body = derivation { - name = "build-hook"; - system = "@system@"; - builder = "@shell@"; - args = ["-e" "-x" ./dependencies.builder0.sh]; - PATH = "@testPath@"; - inherit input1 input2; - }; - -} \ No newline at end of file |