diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-05-12T09·35+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-05-12T09·35+0000 |
commit | 8c0b42f857b53993d95c5bc077e8f8a71028c5ac (patch) | |
tree | 8911f759371585a66cfd6b5ad604fff0a97779ba /tests/build-hook.sh | |
parent | c8d3882cdc8f9e22c58af285c1996265c1af75d5 (diff) |
* An quick and dirty hack to support distributed builds.
Diffstat (limited to 'tests/build-hook.sh')
-rw-r--r-- | tests/build-hook.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/build-hook.sh b/tests/build-hook.sh new file mode 100644 index 000000000000..bd74e42fe366 --- /dev/null +++ b/tests/build-hook.sh @@ -0,0 +1,12 @@ +export NIX_BUILD_HOOK="sh build-hook.hook.sh" + +storeExpr=$($TOP/src/nix-instantiate/nix-instantiate build-hook.nix) + +echo "store expr is $storeExpr" + +outPath=$($TOP/src/nix-store/nix-store -qnfvvvvv "$storeExpr") + +echo "output path is $outPath" + +text=$(cat "$outPath"/foobar) +if test "$text" != "BARBAR"; then exit 1; fi |