2016-11-27 21:35:58 +01:00
|
|
|
/* This function composes the Nix Packages collection. It:
|
|
|
|
|
|
|
|
1. Applies the final stage to the given `config` if it is a function
|
|
|
|
|
|
|
|
2. Infers an appropriate `platform` based on the `system` if none is
|
|
|
|
provided
|
|
|
|
|
|
|
|
3. Defaults to no non-standard config and no cross-compilation target
|
|
|
|
|
2016-12-16 14:22:02 +01:00
|
|
|
4. Uses the above to infer the default standard environment's (stdenv's)
|
|
|
|
stages if no stdenv's are provided
|
2016-11-27 21:35:58 +01:00
|
|
|
|
2016-12-16 14:22:02 +01:00
|
|
|
5. Folds the stages to yield the final fully booted package set for the
|
|
|
|
chosen stdenv
|
2016-11-27 21:35:58 +01:00
|
|
|
|
|
|
|
Use `impure.nix` to also infer the `system` based on the one on which
|
|
|
|
evaluation is taking place, and the configuration from environment variables
|
|
|
|
or dot-files. */
|
2016-03-20 17:28:18 +01:00
|
|
|
|
|
|
|
{ # The system (e.g., `i686-linux') for which to build the packages.
|
2016-04-26 19:53:31 +02:00
|
|
|
system
|
2016-03-20 17:28:18 +01:00
|
|
|
|
2016-04-26 19:53:31 +02:00
|
|
|
, # Allow a configuration attribute set to be passed in as an argument.
|
|
|
|
config ? {}
|
2016-03-20 17:28:18 +01:00
|
|
|
|
2016-12-17 19:05:21 +01:00
|
|
|
, # List of overlays layers used to extend Nixpkgs.
|
|
|
|
overlays ? []
|
|
|
|
|
2016-12-16 14:22:02 +01:00
|
|
|
, # A function booting the final package set for a specific standard
|
|
|
|
# environment. See below for the arguments given to that function,
|
|
|
|
# the type of list it returns.
|
|
|
|
stdenvStages ? import ../stdenv
|
2016-12-04 02:21:07 +01:00
|
|
|
|
2016-03-20 17:28:18 +01:00
|
|
|
, crossSystem ? null
|
2016-11-27 00:13:43 +01:00
|
|
|
, platform ? assert false; null
|
2016-11-02 21:39:18 +01:00
|
|
|
} @ args:
|
2016-03-20 17:28:18 +01:00
|
|
|
|
2016-11-27 21:32:56 +01:00
|
|
|
let # Rename the function arguments
|
|
|
|
configExpr = config;
|
2016-03-20 17:28:18 +01:00
|
|
|
|
2016-11-27 21:32:56 +01:00
|
|
|
in let
|
2016-03-20 17:28:18 +01:00
|
|
|
lib = import ../../lib;
|
|
|
|
|
2016-06-22 10:33:53 +02:00
|
|
|
# Allow both:
|
|
|
|
# { /* the config */ } and
|
|
|
|
# { pkgs, ... } : { /* the config */ }
|
2016-03-20 17:28:18 +01:00
|
|
|
config =
|
2016-06-22 10:33:53 +02:00
|
|
|
if builtins.isFunction configExpr
|
|
|
|
then configExpr { inherit pkgs; }
|
|
|
|
else configExpr;
|
2016-03-20 17:28:18 +01:00
|
|
|
|
2016-11-27 00:13:43 +01:00
|
|
|
# Allow setting the platform in the config file. Otherwise, let's use a
|
|
|
|
# reasonable default.
|
|
|
|
platform =
|
|
|
|
args.platform
|
2016-12-21 01:27:04 +01:00
|
|
|
or ( config.platform
|
|
|
|
or ((import ./platforms.nix).selectPlatformBySystem system) );
|
2016-03-20 17:28:18 +01:00
|
|
|
|
2016-11-02 21:39:18 +01:00
|
|
|
# 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.
|
|
|
|
#
|
2016-11-27 00:34:13 +01:00
|
|
|
# It's OK that `args` doesn't include default arguemtns from this file:
|
|
|
|
# they'll be deterministically inferred. In fact we must *not* include them,
|
|
|
|
# because it's important that if some parameter which affects the default is
|
|
|
|
# substituted with a different argument, the default is re-inferred.
|
|
|
|
#
|
|
|
|
# To put this in concrete terms, this function is basically just used today to
|
|
|
|
# use package for a different platform for the current platform (namely cross
|
|
|
|
# compiling toolchains and 32-bit packages on x86_64). In both those cases we
|
|
|
|
# want the provided non-native `system` argument to affect the stdenv chosen.
|
2016-11-02 21:39:18 +01:00
|
|
|
nixpkgsFun = newArgs: import ./. (args // newArgs);
|
|
|
|
|
2016-11-27 21:37:45 +01:00
|
|
|
# Partially apply some arguments for building bootstraping stage pkgs
|
|
|
|
# sets. Only apply arguments which no stdenv would want to override.
|
2016-11-27 21:35:58 +01:00
|
|
|
allPackages = newArgs: import ./stage.nix ({
|
2016-11-27 21:37:45 +01:00
|
|
|
inherit lib nixpkgsFun;
|
2016-11-27 21:35:58 +01:00
|
|
|
} // newArgs);
|
|
|
|
|
2016-12-16 14:22:02 +01:00
|
|
|
boot = import ../stdenv/booter.nix { inherit lib allPackages; };
|
|
|
|
|
|
|
|
stages = stdenvStages {
|
2017-01-15 23:45:04 +01:00
|
|
|
# One would think that `localSystem` and `crossSystem` overlap horribly with
|
|
|
|
# the three `*Platforms` (`buildPlatform`, `hostPlatform,` and
|
|
|
|
# `targetPlatform`; see `stage.nix` or the manual). Actually, those
|
|
|
|
# identifiers I, @Ericson2314, purposefully not used here to draw a subtle
|
|
|
|
# but important distinction:
|
|
|
|
#
|
|
|
|
# While the granularity of having 3 platforms is necessary to properly
|
|
|
|
# *build* packages, it is overkill for specifying the user's *intent* when
|
|
|
|
# making a build plan or package set. A simple "build vs deploy" dichotomy
|
|
|
|
# is adequate: the "sliding window" principle described in the manual shows
|
|
|
|
# how to interpolate between the these two "end points" to get the 3
|
|
|
|
# platform triple for each bootstrapping stage.
|
|
|
|
#
|
|
|
|
# Also, less philosophically but quite practically, `crossSystem` should be
|
|
|
|
# null when one doesn't want to cross-compile, while the `*Platform`s are
|
|
|
|
# always non-null. `localSystem` is always non-null.
|
2016-12-24 19:55:11 +01:00
|
|
|
localSystem = { inherit system platform; };
|
|
|
|
inherit lib crossSystem config overlays;
|
2016-11-27 21:35:58 +01:00
|
|
|
};
|
|
|
|
|
2016-12-16 14:22:02 +01:00
|
|
|
pkgs = boot stages;
|
2016-10-12 21:14:49 +02:00
|
|
|
|
|
|
|
in pkgs
|