nix-super/tests/functional/ifd.nix

11 lines
214 B
Nix
Raw Normal View History

with import "${builtins.getEnv "_NIX_TEST_BUILD_DIR"}/config.nix";
import (
mkDerivation {
name = "foo";
bla = import ./dependencies.nix {};
buildCommand = "
echo \\\"hi\\\" > $out
";
}
)