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