guix/tests/build-hook.sh

15 lines
281 B
Bash
Raw Normal View History

source common.sh
export NIX_BUILD_HOOK="build-hook.hook.sh"
2006-03-01 12:51:18 +00:00
drvPath=$($nixinstantiate build-hook.nix)
echo "derivation is $drvPath"
2006-03-01 12:51:18 +00:00
outPath=$($nixstore -quf "$drvPath")
echo "output path is $outPath"
text=$(cat "$outPath"/foobar)
if test "$text" != "BARBAR"; then exit 1; fi