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