2006-03-01 14:15:33 +02:00
|
|
|
source common.sh
|
|
|
|
|
2004-06-20 22:17:54 +03:00
|
|
|
# Instantiate.
|
2006-03-01 14:51:18 +02:00
|
|
|
drvPath=$($nixinstantiate substitutes.nix)
|
2005-02-09 14:57:13 +02:00
|
|
|
echo "derivation is $drvPath"
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
# Find the output path.
|
2006-03-01 14:51:18 +02:00
|
|
|
outPath=$($nixstore -qvv "$drvPath")
|
2004-06-20 22:17:54 +03:00
|
|
|
echo "output path is $outPath"
|
|
|
|
|
2004-06-24 15:56:24 +03:00
|
|
|
regSub() {
|
2006-03-01 14:51:18 +02:00
|
|
|
(echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $nixstore --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
|
|
|
|
|
|
|
|
2006-03-01 14:51:18 +02:00
|
|
|
$nixstore -rvv "$drvPath"
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
|
|
if test "$text" != "Hallo Wereld"; then exit 1; fi
|