2006-03-01 13:15:33 +01:00
|
|
|
source common.sh
|
|
|
|
|
2004-06-20 21:17:54 +02:00
|
|
|
# Instantiate.
|
2006-03-01 13:51:18 +01:00
|
|
|
drvPath=$($nixinstantiate substitutes.nix)
|
2005-02-09 13:57:13 +01:00
|
|
|
echo "derivation is $drvPath"
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
# Find the output path.
|
2006-03-01 13:51:18 +01:00
|
|
|
outPath=$($nixstore -qvv "$drvPath")
|
2004-06-20 21:17:54 +02:00
|
|
|
echo "output path is $outPath"
|
|
|
|
|
2004-06-24 14:56:24 +02:00
|
|
|
regSub() {
|
2006-03-01 13:51:18 +01:00
|
|
|
(echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $nixstore --register-substitutes
|
2004-06-24 14:56:24 +02:00
|
|
|
}
|
|
|
|
|
2004-06-20 21:17:54 +02:00
|
|
|
# Register a substitute for the output path.
|
2005-01-25 14:00:12 +01:00
|
|
|
regSub $outPath $(pwd)/substituter.sh
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
|
2006-03-01 13:51:18 +01:00
|
|
|
$nixstore -rvv "$drvPath"
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
|
|
if test "$text" != "Hallo Wereld"; then exit 1; fi
|