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

                                                                    

                       
                                                          

                              
          
                                                                                                                                                           

 
                                            
                                     
 


                                                                  
 
                                            

                            
                                                  
# Instantiate.
drvPath=$($TOP/src/nix-instantiate/nix-instantiate substitutes2.nix)
echo "derivation is $drvPath"

# Find the output path.
outPath=$($TOP/src/nix-store/nix-store -qvvvvv "$drvPath")
echo "output path is $outPath"

regSub() {
    (echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --register-substitutes
}

# Register a substitute for the output path.
regSub $outPath $(pwd)/substituter.sh

# Register another substitute for the output path.  This one takes
# precedence over the previous one.  It will fail.
regSub $outPath $(pwd)/substituter2.sh

$TOP/src/nix-store/nix-store -rvv "$drvPath"

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