1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/tests/fallback.sh

21 lines
595 B
Bash
Raw Normal View History

source common.sh
2007-08-13 09:15:02 -04:00
clearStore
drvPath=$($nixinstantiate simple.nix)
echo "derivation is $drvPath"
2006-03-01 07:51:18 -05:00
outPath=$($nixstore -q --fallback "$drvPath")
echo "output path is $outPath"
2007-08-13 09:15:02 -04:00
# Build with a substitute that fails. This should fail.
export NIX_SUBSTITUTERS=$(pwd)/substituter2.sh
if $nixstore -r "$drvPath"; then echo unexpected fallback; exit 1; fi
2007-08-13 09:15:02 -04:00
# Build with a substitute that fails. This should fall back to a source build.
export NIX_SUBSTITUTERS=$(pwd)/substituter2.sh
2006-03-01 07:51:18 -05:00
$nixstore -r --fallback "$drvPath"
text=$(cat "$outPath"/hello)
if test "$text" != "Hello World!"; then exit 1; fi