about summary refs log tree commit diff
path: root/tests/substitutes.sh
blob: cfc3fa71a15375db6fd0dbb0bd2233c8e6cd79ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Instantiate.
drvPath=$($TOP/src/nix-instantiate/nix-instantiate substitutes.nix)
echo "derivation is $drvPath"

# Find the output path.
outPath=$($TOP/src/nix-store/nix-store -qvv "$drvPath")
echo "output path is $outPath"

regSub() {
    (echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --substitute
}

# Register a substitute for the output path.
regSub $outPath $(pwd)/substituter.sh


$TOP/src/nix-store/nix-store -rvv "$drvPath"

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