nixpkgs/pkgs-ng/stdenv/generic/default.fix
Eelco Dolstra 77d20ed799 * Updated to reflect the changes to the grammar.
svn path=/nixpkgs/trunk/; revision=464
2003-11-03 10:22:00 +00:00

24 lines
493 B
Plaintext

{system, name, noSysDirs, prehook, posthook, initialPath,
param1, param2, param3, param4, param5}:
derivation {
name = name;
system = system;
builder = ./builder.sh;
noSysDirs = noSysDirs;
setup = ./setup.sh;
gccwrapper = ./gcc-wrapper.sh;
ldwrapper = ./ld-wrapper.sh;
prehook = prehook;
posthook = posthook;
initialPath = initialPath;
# TODO: make this more elegant.
param1 = param1;
param2 = param2;
param3 = param3;
param4 = param4;
param5 = param5;
}