mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
17 lines
285 B
Nix
17 lines
285 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"]);
|
|
}
|