39d45a6b09
* Refactor the nix-channel unpacker a bit.
19 lines
327 B
Nix
19 lines
327 B
Nix
rec {
|
|
shell = "@shell@";
|
|
|
|
path = "@testPath@";
|
|
|
|
system = "@system@";
|
|
|
|
shared = "@extra1@";
|
|
|
|
mkDerivation = args:
|
|
derivation ({
|
|
inherit system;
|
|
builder = shell;
|
|
args = ["-e" args.builder];
|
|
PATH = path;
|
|
} // removeAttrs args ["builder" "meta"])
|
|
// { meta = args.meta or {}; };
|
|
}
|