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