nixpkgs/pkgs-ng/stdenv/generic/default.fix
Eelco Dolstra 1894a8b86c * Converting packages. This is the minimal Nix stdenv for building
the ATerm library.

svn path=/nixpkgs/trunk/; revision=459
2003-11-02 17:42:19 +00:00

23 lines
507 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
}