diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-09T12·57+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-09T12·57+0000 |
commit | 98df735b5149bc1e39ce6b0bae13fbf7cebcdc05 (patch) | |
tree | 9a9549e0689400b71e230ba51317a2590969b63d /tests/build-hook.sh | |
parent | 582e01c06f9ecee25a31c34562926b41dc2856eb (diff) |
* Propagate the deriver of a path through the substitute mechanism.
* Removed some dead code (successor stuff) from nix-push. * Updated terminology in the tests (store expr -> drv path). * Check that the deriver is set properly in the tests.
Diffstat (limited to 'tests/build-hook.sh')
-rw-r--r-- | tests/build-hook.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/build-hook.sh b/tests/build-hook.sh index 402ed83c96cd..f11cd15b8b72 100644 --- a/tests/build-hook.sh +++ b/tests/build-hook.sh @@ -1,10 +1,10 @@ export NIX_BUILD_HOOK="build-hook.hook.sh" -storeExpr=$($TOP/src/nix-instantiate/nix-instantiate build-hook.nix) +drvPath=$($TOP/src/nix-instantiate/nix-instantiate build-hook.nix) -echo "store expr is $storeExpr" +echo "derivation is $drvPath" -outPath=$($TOP/src/nix-store/nix-store -quf "$storeExpr") +outPath=$($TOP/src/nix-store/nix-store -quf "$drvPath") echo "output path is $outPath" |