6a9c815734
This is no longer needed.
19 lines
466 B
Nix
19 lines
466 B
Nix
rec {
|
|
shell = "@bash@";
|
|
|
|
path = "@coreutils@";
|
|
|
|
system = builtins.currentSystem;
|
|
|
|
shared = builtins.getEnv "_NIX_TEST_SHARED";
|
|
|
|
mkDerivation = args:
|
|
derivation ({
|
|
inherit system;
|
|
builder = shell;
|
|
args = ["-e" args.builder or (builtins.toFile "builder.sh" "if [ -e .attrs.sh ]; then source .attrs.sh; fi; eval \"$buildCommand\"")];
|
|
PATH = path;
|
|
} // removeAttrs args ["builder" "meta"])
|
|
// { meta = args.meta or {}; };
|
|
}
|