about summary refs log tree commit diff
path: root/tests/simple.sh
blob: 4da1a7b533949213e789d53658b39cfc392c98b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate simple.nix)

echo "store expr is $storeExpr"

outPath=$($TOP/src/nix-store/nix-store -bvv "$storeExpr")

echo "output path is $outPath"

text=$(cat "$outPath"/hello)
if test "$text" != "Hello World!"; then exit 1; fi