2005-02-09 12:57:13 +00:00
|
|
|
drvPath=$($TOP/src/nix-instantiate/nix-instantiate simple.nix)
|
2004-05-04 12:15:30 +00:00
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
echo "derivation is $drvPath"
|
2004-05-04 12:15:30 +00:00
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
|
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
|