about summary refs log tree commit diff
path: root/tests/build-hook.nix.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-05-12T13·49+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-05-12T13·49+0000
commit1f48aa0be7f1fe120cee44a208480b879583c5f8 (patch)
tree5f3d96e2bd4fe4bfb5d23f02581969ee3a98dced /tests/build-hook.nix.in
parentaa5a5084e4855ff612d27913a920ffab073e7b42 (diff)
* Broken test.
Diffstat (limited to 'tests/build-hook.nix.in')
-rw-r--r--tests/build-hook.nix.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/build-hook.nix.in b/tests/build-hook.nix.in
index 920564955a..b38077e7f7 100644
--- a/tests/build-hook.nix.in
+++ b/tests/build-hook.nix.in
@@ -1,21 +1,21 @@
 let {
 
   input1 = derivation {
-    name = "dependencies-input-1";
+    name = "build-hook-input-1";
     system = "@system@";
     builder = "@shell@";
     args = ["-e" "-x" ./dependencies.builder1.sh];
   };
 
   input2 = derivation {
-    name = "dependencies-input-2";
+    name = "build-hook-input-2";
     system = "@system@";
     builder = "@shell@";
     args = ["-e" "-x" ./dependencies.builder2.sh];
   };
 
   body = derivation {
-    name = "dependencies";
+    name = "build-hook";
     system = "@system@";
     builder = "@shell@";
     args = ["-e" "-x" ./dependencies.builder0.sh];