* Refactoring: renamed *.nix.in to *.nix.
This commit is contained in:
parent
2d5114452d
commit
51e7e32c3b
22 changed files with 209 additions and 264 deletions
|
|
@ -1,9 +1,17 @@
|
|||
{
|
||||
rec {
|
||||
shell = "@shell@";
|
||||
|
||||
path = "@testPath@";
|
||||
|
||||
system = "@system@";
|
||||
|
||||
shared = "@extra1@";
|
||||
|
||||
mkDerivation = args:
|
||||
derivation ({
|
||||
system = "@system@";
|
||||
builder = "@shell@";
|
||||
inherit system;
|
||||
builder = shell;
|
||||
args = ["-e" args.builder];
|
||||
PATH = "@testPath@";
|
||||
PATH = path;
|
||||
} // removeAttrs args ["builder"]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue