1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/tests/nix-pull.sh

40 lines
860 B
Bash
Raw Normal View History

source common.sh
clearStore () {
echo "clearing store..."
chmod -R +w "$NIX_STORE_DIR"
rm -rf "$NIX_STORE_DIR"
mkdir "$NIX_STORE_DIR"
rm -rf "$NIX_DB_DIR"
mkdir "$NIX_DB_DIR"
2006-03-01 07:51:18 -05:00
$nixstore --init
}
pullCache () {
echo "pulling cache..."
$PERL -w -I$TOP/scripts $TOP/scripts/nix-pull file://$TEST_ROOT/manifest
}
clearStore
pullCache
2006-03-01 07:51:18 -05:00
drvPath=$($nixinstantiate dependencies.nix)
outPath=$($nixstore -q $drvPath)
echo "building $outPath using substitutes..."
2006-03-01 07:51:18 -05:00
$nixstore -r $outPath
cat $outPath/input-2/bar
clearStore
pullCache
echo "building $drvPath using substitutes..."
2006-03-01 07:51:18 -05:00
$nixstore -r $drvPath
cat $outPath/input-2/bar
# Check that the derivers are set properly.
2006-03-01 07:51:18 -05:00
test $($nixstore -q --deriver "$outPath") = "$drvPath"
$nixstore -q --deriver $(/bin/ls -l $outPath/input-2 | sed 's/.*->\ //') | grep -q -- "-input-2.drv"