about summary refs log tree commit diff
path: root/tests/fallback.sh
blob: ac4370c61be53f4474710c56eaecc7c11bf87505 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate fallback.nix)
echo "store expr is $storeExpr"

outPath=$($TOP/src/nix-store/nix-store -q --fallback "$storeExpr")
echo "output path is $outPath"

# Register a non-existant substitute
(echo $outPath && echo $TOP/no-such-program && echo 0 && echo 0) | $TOP/src/nix-store/nix-store --substitute

# Build the derivation
$TOP/src/nix-store/nix-store -r --fallback "$storeExpr"

text=$(cat "$outPath"/hello)
if test "$text" != "Hello World!"; then exit 1; fi