* Refactoring: renamed *.nix.in to *.nix.

This commit is contained in:
Eelco Dolstra 2009-03-17 17:11:55 +00:00
parent 2d5114452d
commit 51e7e32c3b
22 changed files with 209 additions and 264 deletions

View file

@ -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"]);
}