2004-05-04 14:15:30 +02:00
|
|
|
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate simple.nix)
|
|
|
|
|
|
|
|
echo "store expr is $storeExpr"
|
|
|
|
|
2005-01-25 11:55:33 +01:00
|
|
|
outPath=$($TOP/src/nix-store/nix-store -rvv "$storeExpr")
|
2004-05-04 14:15:30 +02:00
|
|
|
|
|
|
|
echo "output path is $outPath"
|
|
|
|
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
|
|
if test "$text" != "Hello World!"; then exit 1; fi
|