2021-04-10 18:05:16 +02:00
|
|
|
# This file imports the pinned nixpkgs sets and applies relevant
|
|
|
|
# modifications, such as our overlays.
|
|
|
|
#
|
2022-01-31 12:19:21 +01:00
|
|
|
# The actual source pinning happens via niv in //third_party/sources
|
|
|
|
#
|
2021-04-10 18:05:16 +02:00
|
|
|
# Note that the attribute exposed by this (third_party.nixpkgs) is
|
|
|
|
# "special" in that the fixpoint used as readTree's config parameter
|
|
|
|
# in //default.nix passes this attribute as the `pkgs` argument to all
|
|
|
|
# readTree derivations.
|
|
|
|
|
2022-01-18 17:28:00 +01:00
|
|
|
{ depot ? { }, externalArgs ? { }, depotOverlays ? true, ... }:
|
2021-04-10 18:05:16 +02:00
|
|
|
|
|
|
|
let
|
2021-04-10 23:43:41 +02:00
|
|
|
# import the nixos-unstable package set, or optionally use the
|
|
|
|
# source (e.g. a path) specified by the `nixpkgsBisectPath`
|
|
|
|
# argument. This is intended for use-cases where the depot is
|
|
|
|
# bisected against nixpkgs to find the root cause of an issue in a
|
|
|
|
# channel bump.
|
2022-01-31 12:19:21 +01:00
|
|
|
nixpkgsSrc = externalArgs.nixpkgsBisectPath or depot.third_party.sources.nixpkgs;
|
2021-04-10 18:05:16 +02:00
|
|
|
|
|
|
|
# Stable package set is imported, but not exposed, to overlay
|
|
|
|
# required packages into the unstable set.
|
2022-02-01 10:17:42 +01:00
|
|
|
stableNixpkgs = import depot.third_party.sources.nixpkgs-stable { };
|
2021-04-10 18:05:16 +02:00
|
|
|
|
|
|
|
# Overlay for packages that should come from the stable channel
|
|
|
|
# instead (e.g. because something is broken in unstable).
|
2022-04-21 11:33:45 +02:00
|
|
|
# Use `stableNixpkgs` from above.
|
|
|
|
stableOverlay = _unstableSelf: _unstableSuper: {
|
|
|
|
|
2022-04-21 16:36:04 +02:00
|
|
|
# emacs27 is gone from unstable, but people should upgrade at
|
|
|
|
# their own pace.
|
|
|
|
emacs27 = builtins.trace "emacs27 is deprecated, please migrate to emacs28"
|
|
|
|
stableNixpkgs.emacs27;
|
2021-04-10 18:05:16 +02:00
|
|
|
};
|
2021-08-12 15:15:53 +02:00
|
|
|
|
|
|
|
# Overlay to expose the nixpkgs commits we are using to other Nix code.
|
|
|
|
commitsOverlay = _: _: {
|
|
|
|
nixpkgsCommits = {
|
2022-01-31 12:19:21 +01:00
|
|
|
unstable = depot.third_party.sources.nixpkgs.rev;
|
|
|
|
stable = depot.third_party.sources.nixpkgs-stable.rev;
|
2021-08-12 15:15:53 +02:00
|
|
|
};
|
|
|
|
};
|
2021-04-10 18:05:16 +02:00
|
|
|
in
|
|
|
|
import nixpkgsSrc {
|
2021-12-27 23:46:27 +01:00
|
|
|
# allow users to inject their config into builds (e.g. to test CA derivations)
|
|
|
|
config =
|
|
|
|
(if externalArgs ? nixpkgsConfig then externalArgs.nixpkgsConfig else { })
|
|
|
|
// {
|
|
|
|
allowUnfree = true;
|
|
|
|
allowBroken = true;
|
|
|
|
};
|
2022-01-18 17:28:00 +01:00
|
|
|
|
2021-04-10 18:05:16 +02:00
|
|
|
overlays = [
|
2021-08-12 15:15:53 +02:00
|
|
|
commitsOverlay
|
2021-04-10 18:05:16 +02:00
|
|
|
stableOverlay
|
2022-01-18 17:28:00 +01:00
|
|
|
] ++ (if depotOverlays then [
|
2021-04-10 18:05:16 +02:00
|
|
|
depot.third_party.overlays.haskell
|
2021-04-13 22:16:46 +02:00
|
|
|
depot.third_party.overlays.emacs
|
2021-09-01 12:14:37 +02:00
|
|
|
depot.third_party.overlays.tvl
|
2021-08-09 02:47:07 +02:00
|
|
|
depot.third_party.overlays.ecl-static
|
2021-04-18 10:29:49 +02:00
|
|
|
depot.third_party.overlays.dhall
|
2022-01-18 17:28:00 +01:00
|
|
|
] else [ ]);
|
2021-04-10 18:05:16 +02:00
|
|
|
}
|