blob: 681f65cc3b6cd704f1ce07d3f1a09b619e4cb6d9 (
plain) (
tree)
|
|
source common.sh
export NIX_BUILD_HOOK="build-hook.hook.sh"
outPath=$(nix-build build-hook.nix --no-out-link)
echo "output path is $outPath"
text=$(cat "$outPath"/foobar)
if test "$text" != "BARBAR"; then exit 1; fi
|