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