2006-03-01 13:15:33 +01:00
|
|
|
source common.sh
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
pullCache () {
|
|
|
|
echo "pulling cache..."
|
2011-10-10 23:11:08 +02:00
|
|
|
nix-pull file://$TEST_ROOT/manifest
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
clearStore
|
2007-08-13 15:15:02 +02:00
|
|
|
clearManifests
|
2005-01-25 18:08:52 +01:00
|
|
|
pullCache
|
|
|
|
|
2006-03-01 13:51:18 +01:00
|
|
|
drvPath=$($nixinstantiate dependencies.nix)
|
|
|
|
outPath=$($nixstore -q $drvPath)
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
echo "building $outPath using substitutes..."
|
2006-03-01 13:51:18 +01:00
|
|
|
$nixstore -r $outPath
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
cat $outPath/input-2/bar
|
|
|
|
|
|
|
|
clearStore
|
2007-08-13 15:15:02 +02:00
|
|
|
clearManifests
|
2005-01-25 18:08:52 +01:00
|
|
|
pullCache
|
|
|
|
|
|
|
|
echo "building $drvPath using substitutes..."
|
2006-03-01 13:51:18 +01:00
|
|
|
$nixstore -r $drvPath
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
cat $outPath/input-2/bar
|
2005-02-09 13:57:13 +01:00
|
|
|
|
|
|
|
# Check that the derivers are set properly.
|
2006-03-01 13:51:18 +01:00
|
|
|
test $($nixstore -q --deriver "$outPath") = "$drvPath"
|
2006-03-01 15:26:03 +01:00
|
|
|
$nixstore -q --deriver $(readLink $outPath/input-2) | grep -q -- "-input-2.drv"
|
2006-03-01 14:49:12 +01:00
|
|
|
|
2007-08-13 15:15:02 +02:00
|
|
|
clearManifests
|