2d5114452d
derivation attribute.
9 lines
200 B
Nix
9 lines
200 B
Nix
{
|
|
mkDerivation = args:
|
|
derivation ({
|
|
system = "@system@";
|
|
builder = "@shell@";
|
|
args = ["-e" args.builder];
|
|
PATH = "@testPath@";
|
|
} // removeAttrs args ["builder"]);
|
|
}
|