forked from lix-project/lix
5722f9690c
Issue #3373.
19 lines
467 B
Nix
19 lines
467 B
Nix
rec {
|
|
shell = "@bash@";
|
|
|
|
path = "@coreutils@";
|
|
|
|
system = "@system@";
|
|
|
|
shared = builtins.getEnv "_NIX_TEST_SHARED";
|
|
|
|
mkDerivation = args:
|
|
derivation ({
|
|
inherit system;
|
|
builder = shell;
|
|
args = ["-e" args.builder or (builtins.toFile "builder-${args.name}.sh" "if [ -e .attrs.sh ]; then source .attrs.sh; fi; eval \"$buildCommand\"")];
|
|
PATH = path;
|
|
} // removeAttrs args ["builder" "meta"])
|
|
// { meta = args.meta or {}; };
|
|
}
|