2012-01-20 16:47:54 +00:00
|
|
|
|
{ system, name ? "stdenv", preHook ? "", initialPath, gcc, shell
|
2012-12-28 15:36:09 +00:00
|
|
|
|
, extraAttrs ? {}, overrides ? (pkgs: {}), config
|
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
|
|
|
|
}:
|
|
|
|
|
|
2013-03-07 18:42:01 +00:00
|
|
|
|
if ! builtins ? langVersion then
|
|
|
|
|
|
|
|
|
|
abort "This version of Nixpkgs requires Nix >= 1.2, please upgrade!"
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
2009-04-25 14:08:29 +00:00
|
|
|
|
let
|
|
|
|
|
|
2013-09-30 20:43:34 +00:00
|
|
|
|
lib = import ../../../lib;
|
2004-07-02 10:05:53 +00:00
|
|
|
|
|
2013-01-17 22:41:37 +00:00
|
|
|
|
allowUnfree = config.allowUnfree or true && builtins.getEnv "HYDRA_DISALLOW_UNFREE" != "1";
|
2012-08-22 19:21:10 +00:00
|
|
|
|
|
2013-11-04 19:32:49 +00:00
|
|
|
|
allowBroken = builtins.getEnv "NIXPKGS_ALLOW_BROKEN" == "1";
|
|
|
|
|
|
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
|
|
|
|
|
2012-12-28 14:46:45 +00:00
|
|
|
|
inherit preHook initialPath gcc shell;
|
2004-07-02 10:05:53 +00:00
|
|
|
|
|
2009-04-25 14:08:29 +00:00
|
|
|
|
propagatedUserEnvPkgs = [gcc] ++
|
|
|
|
|
lib.filter lib.isDerivation initialPath;
|
2013-03-07 18:42:01 +00:00
|
|
|
|
|
|
|
|
|
__ignoreNulls = true;
|
2006-08-07 13:31:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-21 13:29:07 +00:00
|
|
|
|
// rec {
|
2009-03-25 18:34:27 +00:00
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
description = "The default build environment for Unix packages in Nixpkgs";
|
|
|
|
|
};
|
2010-08-23 14:40:37 +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:
|
2013-10-21 19:56:45 +00: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 19:21:10 +00:00
|
|
|
|
throw "package ‘${attrs.name}’ has an unfree license, refusing to evaluate"
|
2013-11-04 19:32:49 +00: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 22:31:08 +00: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 19:21:10 +00:00
|
|
|
|
else
|
2013-03-24 12:29:10 +00: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 13:07:42 +00:00
|
|
|
|
passthru = attrs.passthru or {};
|
2013-03-24 12:29:10 +00: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 13:31:18 +00:00
|
|
|
|
|
2007-05-20 20:25:06 +00:00
|
|
|
|
# Utility flags to test the type of platform.
|
2012-11-29 13:10:49 +00:00
|
|
|
|
isDarwin = result.system == "x86_64-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"
|
2010-08-01 20:57:13 +00:00
|
|
|
|
|| result.system == "armv5tel-linux"
|
2012-12-06 15:51:52 +00:00
|
|
|
|
|| result.system == "armv6l-linux"
|
2012-04-15 23:41:25 +00:00
|
|
|
|
|| result.system == "armv7l-linux"
|
2012-01-21 00:34:51 +00:00
|
|
|
|
|| result.system == "mips64el-linux";
|
2012-03-06 21:33:14 +00:00
|
|
|
|
isGNU = result.system == "i686-gnu"; # GNU/Hurd
|
2012-08-21 13:29:07 +00:00
|
|
|
|
isGlibc = isGNU # useful for `stdenvNative'
|
|
|
|
|
|| isLinux
|
2012-08-21 13:30:50 +00:00
|
|
|
|
|| result.system == "x86_64-kfreebsd-gnu";
|
2011-11-21 14:11:04 +00:00
|
|
|
|
isSunOS = result.system == "i686-solaris"
|
|
|
|
|
|| result.system == "x86_64-solaris";
|
2010-08-12 11:54:55 +00:00
|
|
|
|
isCygwin = result.system == "i686-cygwin";
|
2011-03-15 09:24:43 +00: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 20:25:06 +00:00
|
|
|
|
isi686 = result.system == "i686-linux"
|
2012-03-06 21:33:14 +00:00
|
|
|
|
|| result.system == "i686-gnu"
|
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";
|
2010-04-24 11:08:24 +00: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 15:30:56 +00:00
|
|
|
|
is64bit = result.system == "x86_64-linux"
|
2012-10-16 17:53:43 +00:00
|
|
|
|
|| result.system == "x86_64-darwin"
|
|
|
|
|
|| result.system == "x86_64-freebsd"
|
|
|
|
|
|| result.system == "x86_64-openbsd";
|
2010-09-01 09:50:12 +00:00
|
|
|
|
isMips = result.system == "mips-linux"
|
2012-01-21 00:34:51 +00:00
|
|
|
|
|| result.system == "mips64el-linux";
|
2012-04-15 23:41:25 +00:00
|
|
|
|
isArm = result.system == "armv5tel-linux"
|
2012-12-06 15:51:52 +00:00
|
|
|
|
|| result.system == "armv6l-linux"
|
2012-04-15 23:41:25 +00:00
|
|
|
|
|| result.system == "armv7l-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;
|
|
|
|
|
|
2010-08-06 10:34:34 +00:00
|
|
|
|
inherit overrides;
|
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;
|
|
|
|
|
|
2010-08-23 14:40:37 +00:00
|
|
|
|
|
2009-04-25 14:08:29 +00:00
|
|
|
|
in stdenvGenerator ./setup.sh
|