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

17 lines
455 B
Bash
Raw Normal View History

source common.sh
2006-03-01 07:51:18 -05:00
drvPath=$($nixinstantiate fallback.nix)
echo "derivation is $drvPath"
2006-03-01 07:51:18 -05:00
outPath=$($nixstore -q --fallback "$drvPath")
echo "output path is $outPath"
# Register a non-existant substitute
2006-03-01 07:51:18 -05:00
(echo $outPath && echo "" && echo $TOP/no-such-program && echo 0 && echo 0) | $nixstore --register-substitutes
# Build the derivation
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