forked from lix-project/lix
remote-store test: Break out IFD expression into a separate file
(cherry picked from commit 9cb287657bec5a969d8bb1678d598d9fa820e60b)
This commit is contained in:
parent
d40e91440d
commit
be208d8e78
10
tests/ifd.nix
Normal file
10
tests/ifd.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
with import ./config.nix;
|
||||||
|
import (
|
||||||
|
mkDerivation {
|
||||||
|
name = "foo";
|
||||||
|
bla = import ./dependencies.nix {};
|
||||||
|
buildCommand = "
|
||||||
|
echo \\\"hi\\\" > $out
|
||||||
|
";
|
||||||
|
}
|
||||||
|
)
|
|
@ -19,18 +19,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Test import-from-derivation through the daemon.
|
# Test import-from-derivation through the daemon.
|
||||||
[[ $(nix eval --impure --raw --expr '
|
[[ $(nix eval --impure --raw --file ./ifd.nix) = hi ]]
|
||||||
with import ./config.nix;
|
|
||||||
import (
|
|
||||||
mkDerivation {
|
|
||||||
name = "foo";
|
|
||||||
bla = import ./dependencies.nix {};
|
|
||||||
buildCommand = "
|
|
||||||
echo \\\"hi\\\" > $out
|
|
||||||
";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
') = hi ]]
|
|
||||||
|
|
||||||
storeCleared=1 NIX_REMOTE_=$NIX_REMOTE $SHELL ./user-envs.sh
|
storeCleared=1 NIX_REMOTE_=$NIX_REMOTE $SHELL ./user-envs.sh
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue