mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
11 lines
275 B
Bash
11 lines
275 B
Bash
|
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate simple.nix)
|
||
|
|
||
|
echo "store expr is $storeExpr"
|
||
|
|
||
|
outPath=$($TOP/src/nix-store/nix-store -qnfvvvvv "$storeExpr")
|
||
|
|
||
|
echo "output path is $outPath"
|
||
|
|
||
|
text=$(cat "$outPath"/hello)
|
||
|
if test "$text" != "Hello World!"; then exit 1; fi
|