01a1658c6b
On the downside, the build process of stdenvLinux builds gcc 9 times (3 x 3 bootstrap stages). That's a bit excessive. svn path=/nixpkgs/trunk/; revision=880
34 lines
756 B
Nix
34 lines
756 B
Nix
{ stdenv, name, preHook ? null, postHook ? null, initialPath, gcc, shell
|
|
, param1 ? "", param2 ? "", param3 ? "", param4 ? "", param5 ? ""
|
|
}:
|
|
|
|
let {
|
|
|
|
body =
|
|
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
builder = ./builder.sh;
|
|
|
|
setup = ./setup.sh;
|
|
|
|
inherit preHook postHook initialPath gcc shell;
|
|
|
|
# TODO: make this more elegant.
|
|
inherit param1 param2 param3 param4 param5;
|
|
}
|
|
|
|
# Add a utility function to produce derivations that use this
|
|
# stdenv and its shell.
|
|
// {
|
|
mkDerivation = attrs: derivation (attrs // {
|
|
builder = shell;
|
|
args = ["-e" (if attrs ? builder then attrs.builder else ./default-builder.sh)];
|
|
stdenv = body;
|
|
system = body.system;
|
|
});
|
|
};
|
|
|
|
}
|