about summary refs log tree commit diff
path: root/tests/nix-pull.sh
blob: 87239948c481120ee1f1fc5f16edf6f07ad10028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
source common.sh

pullCache () {
    echo "pulling cache..."
    nix-pull file://$TEST_ROOT/cache/MANIFEST
}

clearStore
clearManifests
pullCache

drvPath=$(nix-instantiate dependencies.nix)
outPath=$(nix-store -q $drvPath)

echo "building $outPath using substitutes..."
nix-store -r $outPath

cat $outPath/input-2/bar

clearStore
clearManifests
pullCache

echo "building $drvPath using substitutes..."
nix-store -r $drvPath

cat $outPath/input-2/bar

# Check that the derivers are set properly.
test $(nix-store -q --deriver "$outPath") = "$drvPath"
nix-store -q --deriver $(readLink $outPath/input-2) | grep -q -- "-input-2.drv"

clearManifests