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

clearStore

drvPath=$(nix-instantiate simple.nix)
echo "derivation is $drvPath"

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

# Build with a substitute that fails.  This should fail.
export NIX_SUBSTITUTERS=$(pwd)/substituter2.sh
if nix-store -r "$drvPath"; then echo unexpected fallback; exit 1; fi

# Build with a substitute that fails.  This should fall back to a source build.
export NIX_SUBSTITUTERS=$(pwd)/substituter2.sh
nix-store -r --fallback "$drvPath"

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