2004-06-20 22:17:54 +03:00
|
|
|
# Instantiate.
|
2005-02-09 14:57:13 +02:00
|
|
|
drvPath=$($TOP/src/nix-instantiate/nix-instantiate substitutes.nix)
|
|
|
|
echo "derivation is $drvPath"
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
# Find the output path.
|
2005-02-09 14:57:13 +02:00
|
|
|
outPath=$($TOP/src/nix-store/nix-store -qvv "$drvPath")
|
2004-06-20 22:17:54 +03:00
|
|
|
echo "output path is $outPath"
|
|
|
|
|
2004-06-24 15:56:24 +03:00
|
|
|
regSub() {
|
2005-04-08 16:48:41 +03:00
|
|
|
(echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --register-substitutes
|
2004-06-24 15:56:24 +03:00
|
|
|
}
|
|
|
|
|
2004-06-20 22:17:54 +03:00
|
|
|
# Register a substitute for the output path.
|
2005-01-25 15:00:12 +02:00
|
|
|
regSub $outPath $(pwd)/substituter.sh
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
|
2005-02-09 14:57:13 +02:00
|
|
|
$TOP/src/nix-store/nix-store -rvv "$drvPath"
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
|
|
if test "$text" != "Hallo Wereld"; then exit 1; fi
|