blob: 3e58bcc845c282fa5d271fc78c583ab838b948be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
source common.sh
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
|