about summary refs log blame commit diff
path: root/tests/build-hook.sh
blob: ef77a3ae528519d4495b1adc5fd3fb8c80f2fa4e (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                
                                                 
 
                                                 




                                            
source common.sh

export NIX_BUILD_HOOK="$(pwd)/build-hook.hook.sh"

outPath=$(nix-build build-hook.nix --no-out-link)

echo "output path is $outPath"

text=$(cat "$outPath"/foobar)
if test "$text" != "BARBAR"; then exit 1; fi