2016-11-27 20:35:58 +00:00
|
|
|
|
/* This file composes a single bootstrapping stage of the Nix Packages
|
|
|
|
|
collection. That is, it imports the functions that build the various
|
|
|
|
|
packages, and calls them with appropriate arguments. The result is a set of
|
|
|
|
|
all the packages in the Nix Packages collection for some particular platform
|
|
|
|
|
for some particular stage.
|
|
|
|
|
|
|
|
|
|
Default arguments are only provided for bootstrapping
|
|
|
|
|
arguments. Normal users should not import this directly but instead
|
|
|
|
|
import `pkgs/default.nix` or `default.nix`. */
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
|
|
|
|
|
2016-12-24 18:55:11 +00:00
|
|
|
|
{ ## Misc parameters kept the same for all stages
|
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
# Utility functions, could just import but passing in for efficiency
|
|
|
|
|
lib
|
|
|
|
|
|
2021-08-31 08:15:44 +01:00
|
|
|
|
, # Use to reevaluate Nixpkgs
|
2016-12-24 18:55:11 +00:00
|
|
|
|
nixpkgsFun
|
|
|
|
|
|
|
|
|
|
## Other parameters
|
|
|
|
|
##
|
|
|
|
|
|
2019-03-13 17:34:38 +00:00
|
|
|
|
, # Either null or an object in the form:
|
2017-02-06 23:13:02 +00:00
|
|
|
|
#
|
2019-03-13 17:34:38 +00:00
|
|
|
|
# {
|
|
|
|
|
# pkgsBuildBuild = ...;
|
|
|
|
|
# pkgsBuildHost = ...;
|
|
|
|
|
# pkgsBuildTarget = ...;
|
|
|
|
|
# pkgsHostHost = ...;
|
|
|
|
|
# # pkgsHostTarget skipped on purpose.
|
|
|
|
|
# pkgsTargetTarget ...;
|
|
|
|
|
# }
|
|
|
|
|
#
|
|
|
|
|
# These are references to adjacent bootstrapping stages. The more familiar
|
|
|
|
|
# `buildPackages` and `targetPackages` are defined in terms of them. If null,
|
|
|
|
|
# they are instead defined internally as the current stage. This allows us to
|
|
|
|
|
# avoid expensive splicing. `pkgsHostTarget` is skipped because it is always
|
|
|
|
|
# defined as the current stage.
|
|
|
|
|
adjacentPackages
|
2017-02-06 23:13:02 +00:00
|
|
|
|
|
2016-11-27 20:35:58 +00:00
|
|
|
|
, # The standard environment to use for building packages.
|
|
|
|
|
stdenv
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
|
|
|
|
, # 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.
|
2016-12-16 13:22:02 +00:00
|
|
|
|
allowCustomOverrides
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
|
|
|
|
, # Non-GNU/Linux OSes are currently "impure" platforms, with their libc
|
2016-12-24 18:55:11 +00:00
|
|
|
|
# outside of the store. Thus, GCC, GFortran, & co. must always look for files
|
|
|
|
|
# in standard system directories (/usr/include, etc.)
|
2017-07-06 02:47:48 +01:00
|
|
|
|
noSysDirs ? stdenv.buildPlatform.system != "x86_64-freebsd"
|
|
|
|
|
&& stdenv.buildPlatform.system != "i686-freebsd"
|
|
|
|
|
&& stdenv.buildPlatform.system != "x86_64-solaris"
|
|
|
|
|
&& stdenv.buildPlatform.system != "x86_64-kfreebsd-gnu"
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
|
|
|
|
, # The configuration attribute set
|
|
|
|
|
config
|
|
|
|
|
|
2016-12-24 18:55:11 +00:00
|
|
|
|
, # A list of overlays (Additional `self: super: { .. }` customization
|
|
|
|
|
# functions) to be fixed together in the produced package set
|
|
|
|
|
overlays
|
2018-09-27 17:21:26 +01:00
|
|
|
|
} @args:
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
|
|
|
|
let
|
lib/systems: add mips64el definitions
MIPS has a large space of {architecture,abi,endianness}; this commit
adds all of them to lib/systems/platforms.nix so we can be done with
it.
Currently lib/systems/inspect.nix has a single "isMips" predicate,
which is a bit ambiguous now that we will have both mips32 and mips64
support, with the latter having two ABIs. Let's add four new
predicates (isMips32, isMips64, isMips64n32, and isMips64n64) and
treat the now-ambiguous isMips as deprecated in favor of the
more-specific predicates. These predicates are used mainly for
enabling/disabling target-specific workarounds, and it is extremely
rare that a platform-specific workaround is needed, and both mips32
and mips64 need exactly the same workaround.
The separate predicates (isMips64n32 and isMips64n64) for ABI
distinctions are, unfortunately, useful. Boost's user-scheduled
threading (used by nix) does does not currently supports mips64n32,
which is a very desirable ABI on routers since they rarely have
more than 2**32 bytes of DRAM.
2022-02-21 04:32:52 +00:00
|
|
|
|
# This is a function from parsed platforms (like
|
|
|
|
|
# stdenv.hostPlatform.parsed) to parsed platforms.
|
2022-03-09 02:03:52 +00:00
|
|
|
|
makeMuslParsedPlatform = parsed:
|
lib/systems: add mips64el definitions
MIPS has a large space of {architecture,abi,endianness}; this commit
adds all of them to lib/systems/platforms.nix so we can be done with
it.
Currently lib/systems/inspect.nix has a single "isMips" predicate,
which is a bit ambiguous now that we will have both mips32 and mips64
support, with the latter having two ABIs. Let's add four new
predicates (isMips32, isMips64, isMips64n32, and isMips64n64) and
treat the now-ambiguous isMips as deprecated in favor of the
more-specific predicates. These predicates are used mainly for
enabling/disabling target-specific workarounds, and it is extremely
rare that a platform-specific workaround is needed, and both mips32
and mips64 need exactly the same workaround.
The separate predicates (isMips64n32 and isMips64n64) for ABI
distinctions are, unfortunately, useful. Boost's user-scheduled
threading (used by nix) does does not currently supports mips64n32,
which is a very desirable ABI on routers since they rarely have
more than 2**32 bytes of DRAM.
2022-02-21 04:32:52 +00:00
|
|
|
|
# The following line guarantees that the output of this function
|
|
|
|
|
# is a well-formed platform with no missing fields. It will be
|
|
|
|
|
# uncommented in a separate PR, in case it breaks the build.
|
|
|
|
|
#(x: lib.trivial.pipe x [ (x: builtins.removeAttrs x [ "_type" ]) lib.systems.parse.mkSystem ])
|
|
|
|
|
(parsed // {
|
|
|
|
|
abi = {
|
|
|
|
|
gnu = lib.systems.parse.abis.musl;
|
|
|
|
|
gnueabi = lib.systems.parse.abis.musleabi;
|
|
|
|
|
gnueabihf = lib.systems.parse.abis.musleabihf;
|
|
|
|
|
gnuabin32 = lib.systems.parse.abis.muslabin32;
|
|
|
|
|
gnuabi64 = lib.systems.parse.abis.muslabi64;
|
2022-07-25 11:23:45 +01:00
|
|
|
|
gnuabielfv2 = lib.systems.parse.abis.musl;
|
|
|
|
|
gnuabielfv1 = lib.systems.parse.abis.musl;
|
lib/systems: add mips64el definitions
MIPS has a large space of {architecture,abi,endianness}; this commit
adds all of them to lib/systems/platforms.nix so we can be done with
it.
Currently lib/systems/inspect.nix has a single "isMips" predicate,
which is a bit ambiguous now that we will have both mips32 and mips64
support, with the latter having two ABIs. Let's add four new
predicates (isMips32, isMips64, isMips64n32, and isMips64n64) and
treat the now-ambiguous isMips as deprecated in favor of the
more-specific predicates. These predicates are used mainly for
enabling/disabling target-specific workarounds, and it is extremely
rare that a platform-specific workaround is needed, and both mips32
and mips64 need exactly the same workaround.
The separate predicates (isMips64n32 and isMips64n64) for ABI
distinctions are, unfortunately, useful. Boost's user-scheduled
threading (used by nix) does does not currently supports mips64n32,
which is a very desirable ABI on routers since they rarely have
more than 2**32 bytes of DRAM.
2022-02-21 04:32:52 +00:00
|
|
|
|
# The following two entries ensure that this function is idempotent.
|
2022-03-09 04:37:30 +00:00
|
|
|
|
musleabi = lib.systems.parse.abis.musleabi;
|
|
|
|
|
musleabihf = lib.systems.parse.abis.musleabihf;
|
lib/systems: add mips64el definitions
MIPS has a large space of {architecture,abi,endianness}; this commit
adds all of them to lib/systems/platforms.nix so we can be done with
it.
Currently lib/systems/inspect.nix has a single "isMips" predicate,
which is a bit ambiguous now that we will have both mips32 and mips64
support, with the latter having two ABIs. Let's add four new
predicates (isMips32, isMips64, isMips64n32, and isMips64n64) and
treat the now-ambiguous isMips as deprecated in favor of the
more-specific predicates. These predicates are used mainly for
enabling/disabling target-specific workarounds, and it is extremely
rare that a platform-specific workaround is needed, and both mips32
and mips64 need exactly the same workaround.
The separate predicates (isMips64n32 and isMips64n64) for ABI
distinctions are, unfortunately, useful. Boost's user-scheduled
threading (used by nix) does does not currently supports mips64n32,
which is a very desirable ABI on routers since they rarely have
more than 2**32 bytes of DRAM.
2022-02-21 04:32:52 +00:00
|
|
|
|
muslabin32 = lib.systems.parse.abis.muslabin32;
|
|
|
|
|
muslabi64 = lib.systems.parse.abis.muslabi64;
|
|
|
|
|
}.${parsed.abi.name}
|
|
|
|
|
or lib.systems.parse.abis.musl;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2016-11-27 20:32:56 +00:00
|
|
|
|
stdenvAdapters = self: super:
|
2021-08-17 02:16:29 +01:00
|
|
|
|
let
|
|
|
|
|
res = import ../stdenv/adapters.nix {
|
|
|
|
|
inherit lib config;
|
|
|
|
|
pkgs = self;
|
|
|
|
|
};
|
|
|
|
|
in res // {
|
2016-11-27 20:32:56 +00:00
|
|
|
|
stdenvAdapters = res;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
trivialBuilders = self: super:
|
|
|
|
|
import ../build-support/trivial-builders.nix {
|
2021-10-12 20:57:23 +01:00
|
|
|
|
inherit lib;
|
|
|
|
|
inherit (self) runtimeShell stdenv stdenvNoCC;
|
2021-10-12 20:53:02 +01:00
|
|
|
|
inherit (self.pkgsBuildHost) shellcheck;
|
|
|
|
|
inherit (self.pkgsBuildHost.xorg) lndir;
|
2016-11-27 20:32:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-03-13 17:34:38 +00:00
|
|
|
|
stdenvBootstappingAndPlatforms = self: super: let
|
|
|
|
|
withFallback = thisPkgs:
|
|
|
|
|
(if adjacentPackages == null then self else thisPkgs)
|
2017-02-06 23:13:02 +00:00
|
|
|
|
// { recurseForDerivations = false; };
|
2019-03-13 17:34:38 +00:00
|
|
|
|
in {
|
|
|
|
|
# Here are package sets of from related stages. They are all in the form
|
|
|
|
|
# `pkgs{theirHost}{theirTarget}`. For example, `pkgsBuildHost` means their
|
|
|
|
|
# host platform is our build platform, and their target platform is our host
|
|
|
|
|
# platform. We only care about their host/target platforms, not their build
|
|
|
|
|
# platform, because the the former two alone affect the interface of the
|
|
|
|
|
# final package; the build platform is just an implementation detail that
|
|
|
|
|
# should not leak.
|
|
|
|
|
pkgsBuildBuild = withFallback adjacentPackages.pkgsBuildBuild;
|
|
|
|
|
pkgsBuildHost = withFallback adjacentPackages.pkgsBuildHost;
|
|
|
|
|
pkgsBuildTarget = withFallback adjacentPackages.pkgsBuildTarget;
|
|
|
|
|
pkgsHostHost = withFallback adjacentPackages.pkgsHostHost;
|
|
|
|
|
pkgsHostTarget = self // { recurseForDerivations = false; }; # always `self`
|
|
|
|
|
pkgsTargetTarget = withFallback adjacentPackages.pkgsTargetTarget;
|
|
|
|
|
|
|
|
|
|
# Older names for package sets. Use these when only the host platform of the
|
|
|
|
|
# package set matter (i.e. use `buildPackages` where any of `pkgsBuild*`
|
|
|
|
|
# would do, and `targetPackages` when any of `pkgsTarget*` would do (if we
|
|
|
|
|
# had more than just `pkgsTargetTarget`).)
|
|
|
|
|
buildPackages = self.pkgsBuildHost;
|
|
|
|
|
pkgs = self.pkgsHostTarget;
|
|
|
|
|
targetPackages = self.pkgsTargetTarget;
|
|
|
|
|
|
2017-07-06 02:47:48 +01:00
|
|
|
|
inherit stdenv;
|
2016-12-24 18:55:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# The old identifiers for cross-compiling. These should eventually be removed,
|
|
|
|
|
# and the packages that rely on them refactored accordingly.
|
2018-09-11 11:04:00 +01:00
|
|
|
|
platformCompat = self: super: let
|
|
|
|
|
inherit (super.stdenv) buildPlatform hostPlatform targetPlatform;
|
|
|
|
|
in {
|
|
|
|
|
inherit buildPlatform hostPlatform targetPlatform;
|
2016-12-18 07:51:18 +00:00
|
|
|
|
};
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
2019-03-13 17:34:38 +00:00
|
|
|
|
splice = self: super: import ./splice.nix lib self (adjacentPackages != null);
|
top-level: Introduce `buildPackages` for resolving build-time deps
[N.B., this package also applies to the commits that follow it in the same
PR.]
In most cases, buildPackages = pkgs so things work just as before. For
cross compiling, however, buildPackages is resolved as the previous
bootstrapping stage. This allows us to avoid the mkDerivation hacks cross
compiling currently uses today.
To avoid a massive refactor, callPackage will splice together both package
sets. Again to avoid churn, it uses the old `nativeDrv` vs `crossDrv` to do
so. So now, whether cross compiling or not, packages with get a `nativeDrv`
and `crossDrv`---in the non-cross-compiling case they are simply the same
derivation. This is good because it reduces the divergence between the
cross and non-cross dataflow. See `pkgs/top-level/splice.nix` for a comment
along the lines of the preceding paragraph, and the code that does this
splicing.
Also, `forceNativeDrv` is replaced with `forceNativePackages`. The latter
resolves `pkgs` unless the host platform is different from the build
platform, in which case it resolves to `buildPackages`. Note that the
target platform is not important here---it will not prevent
`forcedNativePackages` from resolving to `pkgs`.
--------
Temporarily, we make preserve some dubious decisions in the name of preserving
hashes:
Most importantly, we don't distinguish between "host" and "target" in the
autoconf sense. This leads to the proliferation of *Cross derivations
currently used. What we ought to is resolve native deps of the cross "build
packages" (build = host != target) package set against the "vanilla
packages" (build = host = target) package set. Instead, "build packages"
uses itself, with (informally) target != build in all cases.
This is wrong because it violates the "sliding window" principle of
bootstrapping stages that shifting the platform triple of one stage to the
left coincides with the next stage's platform triple. Only because we don't
explicitly distinguish between "host" and "target" does it appear that the
"sliding window" principle is preserved--indeed it is over the reductionary
"platform double" of just "build" and "host/target".
Additionally, we build libc, libgcc, etc in the same stage as the compilers
themselves, which is wrong because they are used at runtime, not build
time. Fixing this is somewhat subtle, and the solution and problem will be
better explained in the commit that does fix it.
Commits after this will solve both these issues, at the expense of breaking
cross hashes. Native hashes won't be broken, thankfully.
--------
Did the temporary ugliness pan out? Of the packages that currently build in
`release-cross.nix`, the only ones that have their hash changed are
`*.gcc.crossDrv` and `bootstrapTools.*.coreutilsMinimal`. In both cases I
think it doesn't matter.
1. GCC when doing a `build = host = target = foreign` build (maximally
cross), still defines environment variables like `CPATH`[1] with
packages. This seems assuredly wrong because whether gcc dynamically
links those, or the programs built by gcc dynamically link those---I
have no idea which case is reality---they should be foreign. Therefore,
in all likelihood, I just made the gcc less broken.
2. Coreutils (ab)used the old cross-compiling infrastructure to depend on
a native version of itself. When coreutils was overwritten to be built
with fewer features, the native version it used would also be
overwritten because the binding was tight. Now it uses the much looser
`BuildPackages.coreutils` which is just fine as a richer build dep
doesn't cause any problems and avoids a rebuild.
So, in conclusion I'd say the conservatism payed off. Onward to actually
raking the muck in the next PR!
[1]: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
2016-12-18 07:51:18 +00:00
|
|
|
|
|
2016-11-27 20:32:56 +00:00
|
|
|
|
allPackages = self: super:
|
2019-02-03 11:22:22 +00:00
|
|
|
|
let res = import ./all-packages.nix
|
2019-02-23 09:59:58 +00:00
|
|
|
|
{ inherit lib noSysDirs config overlays; }
|
2019-02-03 11:22:22 +00:00
|
|
|
|
res self super;
|
|
|
|
|
in res;
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
2022-04-01 10:33:10 +01:00
|
|
|
|
aliases = self: super: lib.optionalAttrs config.allowAliases (import ./aliases.nix lib self super);
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
2016-12-22 02:42:53 +00:00
|
|
|
|
# stdenvOverrides is used to avoid having multiple of versions
|
|
|
|
|
# of certain dependencies that were used in bootstrapping the
|
|
|
|
|
# standard environment.
|
2016-11-27 20:32:56 +00:00
|
|
|
|
stdenvOverrides = self: super:
|
2016-12-22 02:42:53 +00:00
|
|
|
|
(super.stdenv.overrides or (_: _: {})) self super;
|
2016-11-27 20:32:56 +00:00
|
|
|
|
|
|
|
|
|
# Allow packages to be overridden globally via the `packageOverrides'
|
|
|
|
|
# configuration option, which must be a function that takes `pkgs'
|
|
|
|
|
# as an argument and returns a set of new or overridden packages.
|
|
|
|
|
# The `packageOverrides' function is called with the *original*
|
|
|
|
|
# (un-overridden) set of packages, allowing packageOverrides
|
|
|
|
|
# attributes to refer to the original attributes (e.g. "foo =
|
|
|
|
|
# ... pkgs.foo ...").
|
|
|
|
|
configOverrides = self: super:
|
|
|
|
|
lib.optionalAttrs allowCustomOverrides
|
|
|
|
|
((config.packageOverrides or (super: {})) super);
|
|
|
|
|
|
2018-07-05 18:59:03 +01:00
|
|
|
|
# Convenience attributes for instantitating package sets. Each of
|
|
|
|
|
# these will instantiate a new version of allPackages. Currently the
|
|
|
|
|
# following package sets are provided:
|
|
|
|
|
#
|
|
|
|
|
# - pkgsCross.<system> where system is a member of lib.systems.examples
|
|
|
|
|
# - pkgsMusl
|
|
|
|
|
# - pkgsi686Linux
|
2018-07-05 21:16:26 +01:00
|
|
|
|
otherPackageSets = self: super: {
|
2018-07-05 20:47:10 +01:00
|
|
|
|
# This maps each entry in lib.systems.examples to its own package
|
|
|
|
|
# set. Each of these will contain all packages cross compiled for
|
2021-06-17 10:16:37 +01:00
|
|
|
|
# that target system. For instance, pkgsCross.raspberryPi.hello,
|
2018-07-05 20:47:10 +01:00
|
|
|
|
# will refer to the "hello" package built for the ARM6-based
|
|
|
|
|
# Raspberry Pi.
|
|
|
|
|
pkgsCross = lib.mapAttrs (n: crossSystem:
|
|
|
|
|
nixpkgsFun { inherit crossSystem; })
|
|
|
|
|
lib.systems.examples;
|
|
|
|
|
|
2021-04-26 11:32:25 +01:00
|
|
|
|
pkgsLLVM = nixpkgsFun {
|
|
|
|
|
overlays = [
|
|
|
|
|
(self': super': {
|
|
|
|
|
pkgsLLVM = super';
|
|
|
|
|
})
|
|
|
|
|
] ++ overlays;
|
|
|
|
|
# Bootstrap a cross stdenv using the LLVM toolchain.
|
|
|
|
|
# This is currently not possible when compiling natively,
|
|
|
|
|
# so we don't need to check hostPlatform != buildPlatform.
|
|
|
|
|
crossSystem = stdenv.hostPlatform // {
|
|
|
|
|
useLLVM = true;
|
2021-08-03 19:25:51 +01:00
|
|
|
|
linker = "lld";
|
2021-04-26 11:32:25 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2018-07-05 20:47:10 +01:00
|
|
|
|
# All packages built with the Musl libc. This will override the
|
|
|
|
|
# default GNU libc on Linux systems. Non-Linux systems are not
|
|
|
|
|
# supported.
|
2018-07-05 22:32:54 +01:00
|
|
|
|
pkgsMusl = if stdenv.hostPlatform.isLinux then nixpkgsFun {
|
2019-03-25 08:51:23 +00:00
|
|
|
|
overlays = [ (self': super': {
|
|
|
|
|
pkgsMusl = super';
|
|
|
|
|
})] ++ overlays;
|
2018-10-14 06:26:09 +01:00
|
|
|
|
${if stdenv.hostPlatform == stdenv.buildPlatform
|
|
|
|
|
then "localSystem" else "crossSystem"} = {
|
2022-03-09 02:10:28 +00:00
|
|
|
|
parsed = makeMuslParsedPlatform stdenv.hostPlatform.parsed;
|
2018-07-05 21:16:26 +01:00
|
|
|
|
};
|
2018-07-05 22:32:54 +01:00
|
|
|
|
} else throw "Musl libc only supports Linux systems.";
|
2018-07-05 20:47:10 +01:00
|
|
|
|
|
|
|
|
|
# All packages built for i686 Linux.
|
|
|
|
|
# Used by wine, firefox with debugging version of Flash, ...
|
2018-11-03 05:58:58 +00:00
|
|
|
|
pkgsi686Linux = if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86 then nixpkgsFun {
|
2019-03-25 08:51:23 +00:00
|
|
|
|
overlays = [ (self': super': {
|
|
|
|
|
pkgsi686Linux = super';
|
|
|
|
|
})] ++ overlays;
|
2018-10-14 06:26:09 +01:00
|
|
|
|
${if stdenv.hostPlatform == stdenv.buildPlatform
|
|
|
|
|
then "localSystem" else "crossSystem"} = {
|
2018-07-05 21:16:26 +01:00
|
|
|
|
parsed = stdenv.hostPlatform.parsed // {
|
|
|
|
|
cpu = lib.systems.parse.cpuTypes.i686;
|
|
|
|
|
};
|
|
|
|
|
};
|
2018-11-03 05:58:58 +00:00
|
|
|
|
} else throw "i686 Linux package set can only be used with the x86 family.";
|
2018-09-27 17:21:26 +01:00
|
|
|
|
|
|
|
|
|
# Extend the package set with zero or more overlays. This preserves
|
|
|
|
|
# preexisting overlays. Prefer to initialize with the right overlays
|
|
|
|
|
# in one go when calling Nixpkgs, for performance and simplicity.
|
|
|
|
|
appendOverlays = extraOverlays:
|
2018-10-27 13:00:19 +01:00
|
|
|
|
if extraOverlays == []
|
|
|
|
|
then self
|
2021-08-31 08:15:44 +01:00
|
|
|
|
else nixpkgsFun { overlays = args.overlays ++ extraOverlays; };
|
2018-09-27 17:21:26 +01:00
|
|
|
|
|
2020-11-30 13:20:28 +00:00
|
|
|
|
# NOTE: each call to extend causes a full nixpkgs rebuild, adding ~130MB
|
|
|
|
|
# of allocations. DO NOT USE THIS IN NIXPKGS.
|
|
|
|
|
#
|
2018-09-27 17:21:26 +01:00
|
|
|
|
# Extend the package set with a single overlay. This preserves
|
|
|
|
|
# preexisting overlays. Prefer to initialize with the right overlays
|
|
|
|
|
# in one go when calling Nixpkgs, for performance and simplicity.
|
|
|
|
|
# Prefer appendOverlays if used repeatedly.
|
|
|
|
|
extend = f: self.appendOverlays [f];
|
|
|
|
|
|
2018-12-05 03:17:22 +00:00
|
|
|
|
# Fully static packages.
|
|
|
|
|
# Currently uses Musl on Linux (couldn’t get static glibc to work).
|
|
|
|
|
pkgsStatic = nixpkgsFun ({
|
2019-03-25 08:51:23 +00:00
|
|
|
|
overlays = [ (self': super': {
|
|
|
|
|
pkgsStatic = super';
|
|
|
|
|
})] ++ overlays;
|
2018-12-05 03:17:22 +00:00
|
|
|
|
} // lib.optionalAttrs stdenv.hostPlatform.isLinux {
|
|
|
|
|
crossSystem = {
|
2020-08-25 02:46:48 +01:00
|
|
|
|
isStatic = true;
|
2022-03-09 02:10:28 +00:00
|
|
|
|
parsed = makeMuslParsedPlatform stdenv.hostPlatform.parsed;
|
2018-12-05 03:17:22 +00:00
|
|
|
|
};
|
|
|
|
|
});
|
2018-06-25 19:22:51 +01:00
|
|
|
|
};
|
2018-06-25 19:18:51 +01:00
|
|
|
|
|
2018-01-27 15:11:26 +00:00
|
|
|
|
# The complete chain of package set builders, applied from top to bottom.
|
|
|
|
|
# stdenvOverlays must be last as it brings package forward from the
|
|
|
|
|
# previous bootstrapping phases which have already been overlayed.
|
2016-12-17 18:05:21 +00:00
|
|
|
|
toFix = lib.foldl' (lib.flip lib.extends) (self: {}) ([
|
2016-12-18 07:51:18 +00:00
|
|
|
|
stdenvBootstappingAndPlatforms
|
2016-12-24 18:55:11 +00:00
|
|
|
|
platformCompat
|
2016-11-27 20:32:56 +00:00
|
|
|
|
stdenvAdapters
|
|
|
|
|
trivialBuilders
|
top-level: Introduce `buildPackages` for resolving build-time deps
[N.B., this package also applies to the commits that follow it in the same
PR.]
In most cases, buildPackages = pkgs so things work just as before. For
cross compiling, however, buildPackages is resolved as the previous
bootstrapping stage. This allows us to avoid the mkDerivation hacks cross
compiling currently uses today.
To avoid a massive refactor, callPackage will splice together both package
sets. Again to avoid churn, it uses the old `nativeDrv` vs `crossDrv` to do
so. So now, whether cross compiling or not, packages with get a `nativeDrv`
and `crossDrv`---in the non-cross-compiling case they are simply the same
derivation. This is good because it reduces the divergence between the
cross and non-cross dataflow. See `pkgs/top-level/splice.nix` for a comment
along the lines of the preceding paragraph, and the code that does this
splicing.
Also, `forceNativeDrv` is replaced with `forceNativePackages`. The latter
resolves `pkgs` unless the host platform is different from the build
platform, in which case it resolves to `buildPackages`. Note that the
target platform is not important here---it will not prevent
`forcedNativePackages` from resolving to `pkgs`.
--------
Temporarily, we make preserve some dubious decisions in the name of preserving
hashes:
Most importantly, we don't distinguish between "host" and "target" in the
autoconf sense. This leads to the proliferation of *Cross derivations
currently used. What we ought to is resolve native deps of the cross "build
packages" (build = host != target) package set against the "vanilla
packages" (build = host = target) package set. Instead, "build packages"
uses itself, with (informally) target != build in all cases.
This is wrong because it violates the "sliding window" principle of
bootstrapping stages that shifting the platform triple of one stage to the
left coincides with the next stage's platform triple. Only because we don't
explicitly distinguish between "host" and "target" does it appear that the
"sliding window" principle is preserved--indeed it is over the reductionary
"platform double" of just "build" and "host/target".
Additionally, we build libc, libgcc, etc in the same stage as the compilers
themselves, which is wrong because they are used at runtime, not build
time. Fixing this is somewhat subtle, and the solution and problem will be
better explained in the commit that does fix it.
Commits after this will solve both these issues, at the expense of breaking
cross hashes. Native hashes won't be broken, thankfully.
--------
Did the temporary ugliness pan out? Of the packages that currently build in
`release-cross.nix`, the only ones that have their hash changed are
`*.gcc.crossDrv` and `bootstrapTools.*.coreutilsMinimal`. In both cases I
think it doesn't matter.
1. GCC when doing a `build = host = target = foreign` build (maximally
cross), still defines environment variables like `CPATH`[1] with
packages. This seems assuredly wrong because whether gcc dynamically
links those, or the programs built by gcc dynamically link those---I
have no idea which case is reality---they should be foreign. Therefore,
in all likelihood, I just made the gcc less broken.
2. Coreutils (ab)used the old cross-compiling infrastructure to depend on
a native version of itself. When coreutils was overwritten to be built
with fewer features, the native version it used would also be
overwritten because the binding was tight. Now it uses the much looser
`BuildPackages.coreutils` which is just fine as a richer build dep
doesn't cause any problems and avoids a rebuild.
So, in conclusion I'd say the conservatism payed off. Onward to actually
raking the muck in the next PR!
[1]: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
2016-12-18 07:51:18 +00:00
|
|
|
|
splice
|
2016-11-27 20:32:56 +00:00
|
|
|
|
allPackages
|
2018-07-05 18:59:03 +01:00
|
|
|
|
otherPackageSets
|
2016-11-27 20:32:56 +00:00
|
|
|
|
aliases
|
|
|
|
|
configOverrides
|
2018-01-27 15:11:26 +00:00
|
|
|
|
] ++ overlays ++ [
|
|
|
|
|
stdenvOverrides ]);
|
2016-12-17 18:05:21 +00:00
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
# Return the complete set of packages.
|
|
|
|
|
lib.fix toFix
|