2012-01-20 08:47:54 -08:00
|
|
|
|
{ system, name ? "stdenv", preHook ? "", initialPath, gcc, shell
|
2012-12-28 07:36:09 -08:00
|
|
|
|
, extraAttrs ? {}, overrides ? (pkgs: {}), config
|
2009-02-02 07:03:38 -08:00
|
|
|
|
|
|
|
|
|
, # The `fetchurl' to use for downloading curl and its dependencies
|
|
|
|
|
# (see all-packages.nix).
|
|
|
|
|
fetchurlBoot
|
2004-07-02 03:05:53 -07:00
|
|
|
|
}:
|
|
|
|
|
|
2013-03-07 10:42:01 -08:00
|
|
|
|
if ! builtins ? langVersion then
|
|
|
|
|
|
|
|
|
|
abort "This version of Nixpkgs requires Nix >= 1.2, please upgrade!"
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
2009-04-25 07:08:29 -07:00
|
|
|
|
let
|
|
|
|
|
|
2013-09-30 13:43:34 -07:00
|
|
|
|
lib = import ../../../lib;
|
2004-07-02 03:05:53 -07:00
|
|
|
|
|
2013-01-17 14:41:37 -08:00
|
|
|
|
allowUnfree = config.allowUnfree or true && builtins.getEnv "HYDRA_DISALLOW_UNFREE" != "1";
|
2012-08-22 12:21:10 -07:00
|
|
|
|
|
2013-11-04 11:32:49 -08:00
|
|
|
|
allowBroken = builtins.getEnv "NIXPKGS_ALLOW_BROKEN" == "1";
|
|
|
|
|
|
2006-08-07 06:31:18 -07:00
|
|
|
|
stdenvGenerator = setupScript: rec {
|
2004-07-02 03:05:53 -07:00
|
|
|
|
|
2006-08-07 06:31:18 -07:00
|
|
|
|
# The stdenv that we are producing.
|
|
|
|
|
result =
|
2004-07-02 03:05:53 -07:00
|
|
|
|
|
2009-02-01 13:28:55 -08:00
|
|
|
|
derivation {
|
2009-11-16 15:21:13 -08:00
|
|
|
|
inherit system name;
|
2004-07-02 03:05:53 -07:00
|
|
|
|
|
2009-02-01 13:28:55 -08:00
|
|
|
|
builder = shell;
|
|
|
|
|
|
|
|
|
|
args = ["-e" ./builder.sh];
|
2005-02-22 06:32:56 -08:00
|
|
|
|
|
2006-08-07 06:31:18 -07:00
|
|
|
|
setup = setupScript;
|
2004-07-02 03:05:53 -07:00
|
|
|
|
|
2012-12-28 06:46:45 -08:00
|
|
|
|
inherit preHook initialPath gcc shell;
|
2004-07-02 03:05:53 -07:00
|
|
|
|
|
2009-04-25 07:08:29 -07:00
|
|
|
|
propagatedUserEnvPkgs = [gcc] ++
|
|
|
|
|
lib.filter lib.isDerivation initialPath;
|
2013-03-07 10:42:01 -08:00
|
|
|
|
|
|
|
|
|
__ignoreNulls = true;
|
2006-08-07 06:31:18 -07:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-21 06:29:07 -07:00
|
|
|
|
// rec {
|
2009-03-25 11:34:27 -07:00
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
description = "The default build environment for Unix packages in Nixpkgs";
|
|
|
|
|
};
|
2010-08-23 07:40:37 -07:00
|
|
|
|
|
2006-08-07 06:31:18 -07:00
|
|
|
|
# Add a utility function to produce derivations that use this
|
|
|
|
|
# stdenv and its shell.
|
|
|
|
|
mkDerivation = attrs:
|
2013-10-21 12:56:45 -07:00
|
|
|
|
if !allowUnfree && (let l = lib.lists.toList attrs.meta.license or []; in lib.lists.elem "unfree" l || lib.lists.elem "unfree-redistributable" l) then
|
2012-08-22 12:21:10 -07:00
|
|
|
|
throw "package ‘${attrs.name}’ has an unfree license, refusing to evaluate"
|
2013-11-04 11:32:49 -08:00
|
|
|
|
else if !allowBroken && attrs.meta.broken or false then
|
|
|
|
|
throw "you can't use package ‘${attrs.name}’ because it has been marked as broken"
|
2013-11-04 14:31:08 -08:00
|
|
|
|
else if !allowBroken && attrs.meta.platforms or null != null && !lib.lists.elem result.system attrs.meta.platforms then
|
|
|
|
|
throw "the package ‘${attrs.name}’ is not supported on ‘${result.system}’"
|
2012-08-22 12:21:10 -07:00
|
|
|
|
else
|
2013-03-24 05:29:10 -07:00
|
|
|
|
lib.addPassthru (derivation (
|
|
|
|
|
(removeAttrs attrs ["meta" "passthru" "crossAttrs"])
|
|
|
|
|
// (let
|
|
|
|
|
buildInputs = attrs.buildInputs or [];
|
|
|
|
|
nativeBuildInputs = attrs.nativeBuildInputs or [];
|
|
|
|
|
propagatedBuildInputs = attrs.propagatedBuildInputs or [];
|
|
|
|
|
propagatedNativeBuildInputs = attrs.propagatedNativeBuildInputs or [];
|
|
|
|
|
crossConfig = attrs.crossConfig or null;
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
builder = attrs.realBuilder or shell;
|
|
|
|
|
args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)];
|
|
|
|
|
stdenv = result;
|
|
|
|
|
system = result.system;
|
|
|
|
|
userHook = config.stdenv.userHook or null;
|
|
|
|
|
|
|
|
|
|
# Inputs built by the cross compiler.
|
|
|
|
|
buildInputs = lib.optionals (crossConfig != null) buildInputs;
|
|
|
|
|
propagatedBuildInputs = lib.optionals (crossConfig != null)
|
|
|
|
|
propagatedBuildInputs;
|
|
|
|
|
# Inputs built by the usual native compiler.
|
|
|
|
|
nativeBuildInputs = nativeBuildInputs ++ lib.optionals
|
|
|
|
|
(crossConfig == null) buildInputs;
|
|
|
|
|
propagatedNativeBuildInputs = propagatedNativeBuildInputs ++
|
|
|
|
|
lib.optionals (crossConfig == null) propagatedBuildInputs;
|
|
|
|
|
}))) (
|
|
|
|
|
{
|
|
|
|
|
# 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.
|
|
|
|
|
meta = attrs.meta or {};
|
2013-05-03 06:07:42 -07:00
|
|
|
|
passthru = attrs.passthru or {};
|
2013-03-24 05:29:10 -07:00
|
|
|
|
} //
|
|
|
|
|
# Pass through extra attributes that are not inputs, but
|
|
|
|
|
# should be made available to Nix expressions using the
|
|
|
|
|
# derivation (e.g., in assertions).
|
|
|
|
|
(attrs.passthru or {}));
|
2006-08-07 06:31:18 -07:00
|
|
|
|
|
2007-05-20 13:25:06 -07:00
|
|
|
|
# Utility flags to test the type of platform.
|
2012-11-29 05:10:49 -08:00
|
|
|
|
isDarwin = result.system == "x86_64-darwin";
|
2006-10-23 10:43:03 -07:00
|
|
|
|
isLinux = result.system == "i686-linux"
|
|
|
|
|
|| result.system == "x86_64-linux"
|
2009-11-07 16:32:12 -08:00
|
|
|
|
|| result.system == "powerpc-linux"
|
2010-08-01 13:57:13 -07:00
|
|
|
|
|| result.system == "armv5tel-linux"
|
2012-12-06 07:51:52 -08:00
|
|
|
|
|| result.system == "armv6l-linux"
|
2012-04-15 16:41:25 -07:00
|
|
|
|
|| result.system == "armv7l-linux"
|
2012-01-20 16:34:51 -08:00
|
|
|
|
|| result.system == "mips64el-linux";
|
2012-03-06 13:33:14 -08:00
|
|
|
|
isGNU = result.system == "i686-gnu"; # GNU/Hurd
|
2012-08-21 06:29:07 -07:00
|
|
|
|
isGlibc = isGNU # useful for `stdenvNative'
|
|
|
|
|
|| isLinux
|
2012-08-21 06:30:50 -07:00
|
|
|
|
|| result.system == "x86_64-kfreebsd-gnu";
|
2011-11-21 06:11:04 -08:00
|
|
|
|
isSunOS = result.system == "i686-solaris"
|
|
|
|
|
|| result.system == "x86_64-solaris";
|
2010-08-12 04:54:55 -07:00
|
|
|
|
isCygwin = result.system == "i686-cygwin";
|
2011-03-15 02:24:43 -07:00
|
|
|
|
isFreeBSD = result.system == "i686-freebsd"
|
|
|
|
|
|| result.system == "x86_64-freebsd";
|
|
|
|
|
isOpenBSD = result.system == "i686-openbsd"
|
|
|
|
|
|| result.system == "x86_64-openbsd";
|
|
|
|
|
isBSD = result.system == "i686-freebsd"
|
|
|
|
|
|| result.system == "x86_64-freebsd"
|
|
|
|
|
|| result.system == "i686-openbsd"
|
|
|
|
|
|| result.system == "x86_64-openbsd";
|
2007-05-20 13:25:06 -07:00
|
|
|
|
isi686 = result.system == "i686-linux"
|
2012-03-06 13:33:14 -08:00
|
|
|
|
|| result.system == "i686-gnu"
|
2009-09-23 06:30:04 -07:00
|
|
|
|
|| result.system == "i686-freebsd"
|
2009-09-30 08:19:25 -07:00
|
|
|
|
|| result.system == "i686-openbsd"
|
|
|
|
|
|| result.system == "i386-sunos";
|
2010-04-24 04:08:24 -07:00
|
|
|
|
isx86_64 = result.system == "x86_64-linux"
|
|
|
|
|
|| result.system == "x86_64-darwin"
|
|
|
|
|
|| result.system == "x86_64-freebsd"
|
|
|
|
|
|| result.system == "x86_64-openbsd";
|
2009-11-26 07:30:56 -08:00
|
|
|
|
is64bit = result.system == "x86_64-linux"
|
2012-10-16 10:53:43 -07:00
|
|
|
|
|| result.system == "x86_64-darwin"
|
|
|
|
|
|| result.system == "x86_64-freebsd"
|
|
|
|
|
|| result.system == "x86_64-openbsd";
|
2010-09-01 02:50:12 -07:00
|
|
|
|
isMips = result.system == "mips-linux"
|
2012-01-20 16:34:51 -08:00
|
|
|
|
|| result.system == "mips64el-linux";
|
2012-04-15 16:41:25 -07:00
|
|
|
|
isArm = result.system == "armv5tel-linux"
|
2012-12-06 07:51:52 -08:00
|
|
|
|
|| result.system == "armv6l-linux"
|
2012-04-15 16:41:25 -07:00
|
|
|
|
|| result.system == "armv7l-linux";
|
2006-08-07 06:31:18 -07: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 06:32:18 -07:00
|
|
|
|
# For convenience, bring in the library functions in lib/ so
|
|
|
|
|
# packages don't have to do that themselves.
|
2009-04-25 07:08:29 -07:00
|
|
|
|
inherit lib;
|
2007-05-24 06:32:18 -07:00
|
|
|
|
|
2008-05-27 00:49:55 -07:00
|
|
|
|
inherit fetchurlBoot;
|
|
|
|
|
|
2010-08-06 03:34:34 -07:00
|
|
|
|
inherit overrides;
|
2006-08-07 06:31:18 -07: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 07:03:38 -08:00
|
|
|
|
// extraAttrs;
|
2006-08-07 06:31:18 -07:00
|
|
|
|
|
|
|
|
|
}.result;
|
|
|
|
|
|
2010-08-23 07:40:37 -07:00
|
|
|
|
|
2009-04-25 07:08:29 -07:00
|
|
|
|
in stdenvGenerator ./setup.sh
|