about summary refs log tree commit diff
path: root/tests/fallback.sh
blob: 482e4ce5b72ccafa5c4410bc2ddc626e2b8b42e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source common.sh

drvPath=$($nixinstantiate fallback.nix)
echo "derivation is $drvPath"

outPath=$($nixstore -q --fallback "$drvPath")
echo "output path is $outPath"

# Register a non-existant substitute
(echo $outPath && echo "" && echo $TOP/no-such-program && echo 0 && echo 0) | $nixstore --register-substitutes

# Build the derivation
$nixstore -r --fallback "$drvPath"

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