top-level: Use nixpkgsFun to avoid import ../..

This commit is contained in:
John Ericson 2016-11-02 16:39:18 -04:00 committed by Nicolas B. Pierron
parent 64a3317889
commit a113382f2c
3 changed files with 23 additions and 16 deletions

View File

@ -6,6 +6,7 @@
* Hint: ### starts category names. * Hint: ### starts category names.
*/ */
{ system, bootStdenv, noSysDirs, config, crossSystem, platform, lib { system, bootStdenv, noSysDirs, config, crossSystem, platform, lib
, nixpkgsFun
, ... }: , ... }:
self: pkgs: self: pkgs:
@ -35,10 +36,9 @@ in
newScope = extra: lib.callPackageWith (defaultScope // extra); newScope = extra: lib.callPackageWith (defaultScope // extra);
# Override system. This is useful to build i686 packages on x86_64-linux. # Override system. This is useful to build i686 packages on x86_64-linux.
forceSystem = system: kernel: (import ../..) { forceSystem = system: kernel: nixpkgsFun {
inherit system; inherit system;
platform = platform // { kernelArch = kernel; }; platform = platform // { kernelArch = kernel; };
inherit bootStdenv noSysDirs config crossSystem;
}; };
# Used by wine, firefox with debugging version of Flash, ... # Used by wine, firefox with debugging version of Flash, ...
@ -4254,9 +4254,7 @@ in
# load into the Ben Nanonote # load into the Ben Nanonote
gccCross = gccCross =
let let
pkgsCross = (import ../..) { pkgsCross = nixpkgsFun {
inherit system;
inherit bootStdenv noSysDirs config;
# Ben Nanonote system # Ben Nanonote system
crossSystem = { crossSystem = {
config = "mipsel-unknown-linux"; config = "mipsel-unknown-linux";

View File

@ -24,13 +24,12 @@
, crossSystem ? null , crossSystem ? null
, platform ? null , platform ? null
}: } @ args:
let configExpr = config; platform_ = platform; in # rename the function arguments let configExpr = config; platform_ = platform; in # rename the function arguments
let let
lib = import ../../lib; lib = import ../../lib;
# Allow both: # Allow both:
@ -58,9 +57,20 @@ let
else config.platform or platformAuto; else config.platform or platformAuto;
topLevelArguments = { topLevelArguments = {
inherit system bootStdenv noSysDirs config crossSystem platform lib; inherit system bootStdenv noSysDirs config crossSystem platform lib nixpkgsFun;
}; };
# 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
# give `all-packages.nix` all the arguments to this function, even ones that
# don't concern it, we give it this function to "re-call" nixpkgs, inheriting
# whatever arguments it doesn't explicitly provide. This way,
# `all-packages.nix` doesn't know more than it needs too.
#
# It's OK that `args` doesn't include the defaults: they'll be
# deterministically inferred the same way.
nixpkgsFun = newArgs: import ./. (args // newArgs);
stdenvAdapters = self: super: stdenvAdapters = self: super:
let res = import ../stdenv/adapters.nix self; in res // { let res = import ../stdenv/adapters.nix self; in res // {
stdenvAdapters = res; stdenvAdapters = res;
@ -71,7 +81,7 @@ let
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 topLevelArguments) pkgs;
allPackages = self: super: allPackages = self: super:
let res = import ./all-packages.nix topLevelArguments res self; let res = import ./all-packages.nix topLevelArguments res self;

View File

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