forked from lix-project/lix
3eb343754e
I found it hard to read as a big string literal.
23 lines
699 B
Bash
23 lines
699 B
Bash
source common.sh
|
|
|
|
sed -i 's/experimental-features .*/& recursive-nix/' "$NIX_CONF_DIR"/nix.conf
|
|
restartDaemon
|
|
|
|
# FIXME
|
|
if [[ $(uname) != Linux ]]; then skipTest "Not running Linux"; fi
|
|
|
|
clearStore
|
|
|
|
rm -f $TEST_ROOT/result
|
|
|
|
export unreachable=$(nix store add-path ./recursive.sh)
|
|
|
|
NIX_BIN_DIR=$(dirname $(type -p nix)) nix --extra-experimental-features 'nix-command recursive-nix' build -o $TEST_ROOT/result -L --impure --file ./recursive.nix
|
|
|
|
[[ $(cat $TEST_ROOT/result/inner1) =~ blaat ]]
|
|
|
|
# Make sure the recursively created paths are in the closure.
|
|
nix path-info -r $TEST_ROOT/result | grep foobar
|
|
nix path-info -r $TEST_ROOT/result | grep fnord
|
|
nix path-info -r $TEST_ROOT/result | grep inner1
|