2004-07-02 12:05:53 +02:00
|
|
|
{ stdenv, name, preHook ? null, postHook ? null, initialPath, gcc, shell
|
|
|
|
, param1 ? "", param2 ? "", param3 ? "", param4 ? "", param5 ? ""
|
2006-02-09 18:04:18 +01:00
|
|
|
, extraAttrs ? {}
|
2004-07-02 12:05:53 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
let {
|
|
|
|
|
|
|
|
body =
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2005-02-22 15:32:56 +01:00
|
|
|
substitute = ../../build-support/substitute/substitute.sh;
|
|
|
|
|
2004-07-02 12:05:53 +02:00
|
|
|
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.
|
|
|
|
// {
|
2006-02-09 18:04:18 +01:00
|
|
|
|
2004-07-02 12:05:53 +02:00
|
|
|
mkDerivation = attrs: derivation (attrs // {
|
2005-06-20 17:03:52 +02:00
|
|
|
builder = if attrs ? realBuilder then attrs.realBuilder else shell;
|
|
|
|
args = if attrs ? args then attrs.args else
|
|
|
|
["-e" (if attrs ? builder then attrs.builder else ./default-builder.sh)];
|
2004-07-02 12:05:53 +02:00
|
|
|
stdenv = body;
|
|
|
|
system = body.system;
|
|
|
|
});
|
2006-02-09 18:04:18 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# Propagate any extra attributes. For instance, we use this to
|
|
|
|
# "lift" packages like curl from the final stdenv for Linux to
|
|
|
|
# all-packages.nix for that platform (meaning that it has a line
|
|
|
|
# like curl = if stdenv ? curl then stdenv.curl else ...).
|
|
|
|
// extraAttrs;
|
2004-07-02 12:05:53 +02:00
|
|
|
|
|
|
|
}
|