Merge pull request #20108 from Ericson2314/top-level-cleanup

Move stdenvCross and customStdenv to pkgs/stdenv
This commit is contained in:
John Ericson 2016-11-08 10:00:04 -05:00 committed by GitHub
commit a24728fe29
6 changed files with 79 additions and 34 deletions

View File

@ -0,0 +1,31 @@
{ system, allPackages, platform, crossSystem, config, ... } @ args:
rec {
argClobber = {
crossSystem = null;
# Ignore custom stdenvs when cross compiling for compatability
config = builtins.removeAttrs config [ "replaceStdenv" ];
};
vanillaStdenv = (import ../. (args // argClobber // {
allPackages = args: allPackages (argClobber // args);
})).stdenv;
# Yeah this isn't so cleanly just build-time packages yet. Notice the
# buildPackages <-> stdenvCross cycle. Yup, it's very weird.
#
# This works because the derivation used to build `stdenvCross` are in
# fact using `forceNativeDrv` to use the `nativeDrv` attribute of the resulting
# derivation built with `vanillaStdenv` (second argument of `makeStdenvCross`).
#
# Eventually, `forceNativeDrv` should be removed and the cycle broken.
buildPackages = allPackages {
# It's OK to change the built-time dependencies
allowCustomOverrides = true;
bootStdenv = stdenvCross;
inherit system platform crossSystem config;
};
stdenvCross = buildPackages.makeStdenvCross
vanillaStdenv crossSystem
buildPackages.binutilsCross buildPackages.gccCrossStageFinal;
}

View File

@ -0,0 +1,17 @@
{ system, allPackages, platform, crossSystem, config, ... } @ args:
rec {
vanillaStdenv = (import ../. (args // {
# Remove config.replaceStdenv to ensure termination.
config = builtins.removeAttrs config [ "replaceStdenv" ];
})).stdenv;
buildPackages = allPackages {
# It's OK to change the built-time dependencies
allowCustomOverrides = true;
bootStdenv = vanillaStdenv;
inherit system platform crossSystem config;
};
stdenvCustom = config.replaceStdenv { pkgs = buildPackages; };
}

View File

@ -5,7 +5,7 @@
# Posix utilities, the GNU C compiler, and so on. On other systems, # Posix utilities, the GNU C compiler, and so on. On other systems,
# we use the native C library. # we use the native C library.
{ system, allPackages ? import ../.., platform, config, lib }: { system, allPackages ? import ../.., platform, config, crossSystem, lib }:
rec { rec {
@ -36,10 +36,16 @@ rec {
# Linux standard environment. # Linux standard environment.
inherit (import ./linux { inherit system allPackages platform config lib; }) stdenvLinux; inherit (import ./linux { inherit system allPackages platform config lib; }) stdenvLinux;
inherit (import ./darwin { inherit system allPackages platform config;}) stdenvDarwin; inherit (import ./darwin { inherit system allPackages platform config; }) stdenvDarwin;
inherit (import ./cross { inherit system allPackages platform crossSystem config lib; }) stdenvCross;
inherit (import ./custom { inherit system allPackages platform crossSystem config lib; }) stdenvCustom;
# Select the appropriate stdenv for the platform `system'. # Select the appropriate stdenv for the platform `system'.
stdenv = stdenv =
if crossSystem != null then stdenvCross else
if config ? replaceStdenv then stdenvCustom else
if system == "i686-linux" then stdenvLinux else if system == "i686-linux" then stdenvLinux else
if system == "x86_64-linux" then stdenvLinux else if system == "x86_64-linux" then stdenvLinux else
if system == "armv5tel-linux" then stdenvLinux else if system == "armv5tel-linux" then stdenvLinux else

View File

@ -5,9 +5,9 @@
* to merges. Please use the full-text search of your editor. ;) * to merges. Please use the full-text search of your editor. ;)
* Hint: ### starts category names. * Hint: ### starts category names.
*/ */
{ system, bootStdenv, noSysDirs, config, crossSystem, platform, lib { system, noSysDirs, config, crossSystem, platform, lib
, nixpkgsFun , nixpkgsFun
, ... }: }:
self: pkgs: self: pkgs:
with pkgs; with pkgs;

View File

@ -12,6 +12,11 @@
# null, the default standard environment is used. # null, the default standard environment is used.
bootStdenv ? null bootStdenv ? null
, # This is used because stdenv replacement and the stdenvCross do benefit from
# the overridden configuration provided by the user, as opposed to the normal
# bootstrapping stdenvs.
allowCustomOverrides ? (bootStdenv == null)
, # Non-GNU/Linux OSes are currently "impure" platforms, with their libc , # Non-GNU/Linux OSes are currently "impure" platforms, with their libc
# outside of the store. Thus, GCC, GFortran, & co. must always look for # outside of the store. Thus, GCC, GFortran, & co. must always look for
# files in standard system directories (/usr/include, etc.) # files in standard system directories (/usr/include, etc.)
@ -56,10 +61,6 @@ let
platform = if platform_ != null then platform_ platform = if platform_ != null then platform_
else config.platform or platformAuto; else config.platform or platformAuto;
topLevelArguments = {
inherit system bootStdenv noSysDirs config crossSystem platform lib nixpkgsFun;
};
# A few packages make a new package set to draw their dependencies from. # A few packages make a new package set to draw their dependencies from.
# (Currently to get a cross tool chain, or forced-i686 package.) Rather than # (Currently to get a cross tool chain, or forced-i686 package.) Rather than
# give `all-packages.nix` all the arguments to this function, even ones that # give `all-packages.nix` all the arguments to this function, even ones that
@ -77,14 +78,19 @@ let
}; };
trivialBuilders = self: super: trivialBuilders = self: super:
(import ../build-support/trivial-builders.nix { import ../build-support/trivial-builders.nix {
inherit lib; inherit (self) stdenv stdenvNoCC; inherit (self.xorg) lndir; inherit lib; inherit (self) stdenv stdenvNoCC; inherit (self.xorg) lndir;
}); };
stdenvDefault = self: super: (import ./stdenv.nix topLevelArguments) pkgs; stdenvDefault = self: super:
import ./stdenv.nix {
inherit system bootStdenv crossSystem config platform lib nixpkgsFun;
};
allPackages = self: super: allPackages = self: super:
let res = import ./all-packages.nix topLevelArguments res self; let res = import ./all-packages.nix
{ inherit system noSysDirs config crossSystem platform lib nixpkgsFun; }
res self;
in res; in res;
aliases = self: super: import ./aliases.nix super; aliases = self: super: import ./aliases.nix super;
@ -108,7 +114,7 @@ let
# attributes to refer to the original attributes (e.g. "foo = # attributes to refer to the original attributes (e.g. "foo =
# ... pkgs.foo ..."). # ... pkgs.foo ...").
configOverrides = self: super: configOverrides = self: super:
lib.optionalAttrs (bootStdenv == null) lib.optionalAttrs allowCustomOverrides
((config.packageOverrides or (super: {})) super); ((config.packageOverrides or (super: {})) super);
# The complete chain of package set builders, applied from top to bottom # The complete chain of package set builders, applied from top to bottom

View File

@ -1,30 +1,15 @@
{ system, bootStdenv, crossSystem, config, platform, lib, nixpkgsFun, ... }: { system, bootStdenv, crossSystem, config, platform, lib, nixpkgsFun }:
pkgs:
rec { rec {
allStdenvs = import ../stdenv { allStdenvs = import ../stdenv {
inherit system platform config lib; inherit system platform config crossSystem lib;
# TODO(@Ericson2314): hack for cross-compiling until I clean that in follow-up PR allPackages = nixpkgsFun;
allPackages = args: nixpkgsFun (args // { crossSystem = null; });
}; };
defaultStdenv = allStdenvs.stdenv // { inherit platform; }; defaultStdenv = allStdenvs.stdenv // { inherit platform; };
stdenv = stdenv =
if bootStdenv != null then (bootStdenv // {inherit platform;}) else if bootStdenv != null
if crossSystem != null then then (bootStdenv // { inherit platform; })
pkgs.stdenvCross else defaultStdenv;
else
let
changer = config.replaceStdenv or null;
in if changer != null then
changer {
# We import again all-packages to avoid recursivities.
pkgs = nixpkgsFun {
# We remove packageOverrides to avoid recursivities
config = removeAttrs config [ "replaceStdenv" ];
};
}
else
defaultStdenv;
} }