2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2005-01-25 17:08:52 +00:00
|
|
|
pullCache () {
|
|
|
|
echo "pulling cache..."
|
2012-07-26 22:28:12 +00:00
|
|
|
nix-pull file://$TEST_ROOT/cache/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
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
drvPath=$(nix-instantiate dependencies.nix)
|
|
|
|
outPath=$(nix-store -q $drvPath)
|
2005-01-25 17:08:52 +00:00
|
|
|
|
|
|
|
echo "building $outPath using substitutes..."
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store -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..."
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store -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.
|
2011-10-10 21:32:34 +00:00
|
|
|
test $(nix-store -q --deriver "$outPath") = "$drvPath"
|
2012-09-12 15:29:10 +00:00
|
|
|
nix-store -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
|