2009-02-01 21:28:55 +00:00
|
|
|
{ system, name, preHook ? null, postHook ? null, initialPath, gcc, shell
|
2004-07-02 10:05:53 +00:00
|
|
|
, param1 ? "", param2 ? "", param3 ? "", param4 ? "", param5 ? ""
|
2006-02-09 17:04:18 +00:00
|
|
|
, extraAttrs ? {}
|
2009-02-02 15:03:38 +00:00
|
|
|
|
|
|
|
, # The `fetchurl' to use for downloading curl and its dependencies
|
|
|
|
# (see all-packages.nix).
|
|
|
|
fetchurlBoot
|
2004-07-02 10:05:53 +00:00
|
|
|
}:
|
|
|
|
|
2009-04-25 14:08:29 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
lib = import ../../lib;
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2006-08-07 13:31:18 +00:00
|
|
|
stdenvGenerator = setupScript: rec {
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2006-08-07 13:31:18 +00:00
|
|
|
# The stdenv that we are producing.
|
|
|
|
result =
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2009-02-01 21:28:55 +00:00
|
|
|
derivation {
|
2009-11-16 23:21:13 +00:00
|
|
|
inherit system name;
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2009-02-01 21:28:55 +00:00
|
|
|
builder = shell;
|
|
|
|
|
|
|
|
args = ["-e" ./builder.sh];
|
2005-02-22 14:32:56 +00:00
|
|
|
|
2006-08-07 13:31:18 +00:00
|
|
|
setup = setupScript;
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2006-08-07 13:31:18 +00:00
|
|
|
inherit preHook postHook initialPath gcc shell;
|
2004-07-02 10:05:53 +00:00
|
|
|
|
2006-08-07 13:31:18 +00:00
|
|
|
# TODO: make this more elegant.
|
|
|
|
inherit param1 param2 param3 param4 param5;
|
2009-04-25 14:08:29 +00:00
|
|
|
|
|
|
|
propagatedUserEnvPkgs = [gcc] ++
|
|
|
|
lib.filter lib.isDerivation initialPath;
|
2006-08-07 13:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// {
|
2009-03-25 18:34:27 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The default build environment for Unix packages in Nixpkgs";
|
|
|
|
};
|
2006-02-09 17:04:18 +00:00
|
|
|
|
2006-08-07 13:31:18 +00:00
|
|
|
# Add a utility function to produce derivations that use this
|
|
|
|
# stdenv and its shell.
|
|
|
|
mkDerivation = attrs:
|
|
|
|
(derivation (
|
2006-09-14 13:30:47 +00:00
|
|
|
(removeAttrs attrs ["meta" "passthru"])
|
2006-08-07 13:31:18 +00: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)];
|
|
|
|
stdenv = result;
|
|
|
|
system = result.system;
|
|
|
|
})
|
|
|
|
)
|
|
|
|
# The meta attribute is passed in the resulting attribute set,
|
|
|
|
# but it's not part of the actual derivation, i.e., it's not
|
|
|
|
# passed to the builder and is not a dependency. But since we
|
|
|
|
# include it in the result, it *is* available to nix-env for
|
|
|
|
# queries.
|
2006-09-14 13:30:47 +00:00
|
|
|
//
|
|
|
|
{ meta = if attrs ? meta then attrs.meta else {}; }
|
|
|
|
# Pass through extra attributes that are not inputs, but
|
|
|
|
# should be made available to Nix expressions using the
|
|
|
|
# derivation (e.g., in assertions).
|
|
|
|
//
|
|
|
|
(if attrs ? passthru then attrs.passthru else {});
|
2006-08-07 13:31:18 +00:00
|
|
|
|
2007-05-20 20:25:06 +00:00
|
|
|
# Utility flags to test the type of platform.
|
2006-08-07 13:31:18 +00:00
|
|
|
isDarwin = result.system == "i686-darwin" || result.system == "powerpc-darwin";
|
2006-10-23 17:43:03 +00:00
|
|
|
isLinux = result.system == "i686-linux"
|
|
|
|
|| result.system == "x86_64-linux"
|
2009-11-08 00:32:12 +00:00
|
|
|
|| result.system == "powerpc-linux"
|
|
|
|
|| result.system == "armv5tel-linux";
|
2007-05-20 20:25:06 +00:00
|
|
|
isi686 = result.system == "i686-linux"
|
|
|
|
|| result.system == "i686-darwin"
|
2009-09-23 13:30:04 +00:00
|
|
|
|| result.system == "i686-freebsd"
|
2009-09-30 15:19:25 +00:00
|
|
|
|| result.system == "i686-openbsd"
|
|
|
|
|| result.system == "i386-sunos";
|
2007-05-24 13:32:18 +00:00
|
|
|
is64bit = result.system == "x86_64-linux";
|
2006-08-07 13:31:18 +00:00
|
|
|
|
|
|
|
# Utility function: allow stdenv to be easily regenerated with
|
|
|
|
# a different setup script. (See all-packages.nix for an
|
|
|
|
# example.)
|
|
|
|
regenerate = stdenvGenerator;
|
|
|
|
|
2007-05-24 13:32:18 +00:00
|
|
|
# For convenience, bring in the library functions in lib/ so
|
|
|
|
# packages don't have to do that themselves.
|
2009-04-25 14:08:29 +00:00
|
|
|
inherit lib;
|
2007-05-24 13:32:18 +00:00
|
|
|
|
2008-05-27 07:49:55 +00:00
|
|
|
inherit fetchurlBoot;
|
|
|
|
|
2006-08-07 13:31:18 +00: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 ...).
|
2009-02-02 15:03:38 +00:00
|
|
|
// extraAttrs;
|
2006-08-07 13:31:18 +00:00
|
|
|
|
|
|
|
}.result;
|
|
|
|
|
|
|
|
|
2009-04-25 14:08:29 +00:00
|
|
|
in stdenvGenerator ./setup.sh
|