blob: 996ef4e78ffdfbee11d493f2ac30d9d84a1c5503 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
drvPath=$($TOP/src/nix-instantiate/nix-instantiate simple.nix)
echo "derivation is $drvPath"
outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
echo "output path is $outPath"
text=$(cat "$outPath"/hello)
if test "$text" != "Hello World!"; then exit 1; fi
|