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-06-04 01:35:52 +02:00
|
|
|
{ depot ? { }
|
|
|
|
, externalArgs ? { }
|
|
|
|
, depotOverlays ? true
|
|
|
|
, localSystem ? builtins.currentSystem
|
|
|
|
, ...
|
|
|
|
}:
|
2021-04-10 18:05:16 +02:00
|
|
|
|
|
|
|
let
|
2022-06-04 01:38:25 +02:00
|
|
|
# Arguments passed to both the stable nixpkgs and the main, unstable one.
|
|
|
|
# Includes everything but overlays which are only passed to unstable nixpkgs.
|
|
|
|
commonNixpkgsArgs = {
|
|
|
|
# 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;
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit localSystem;
|
|
|
|
};
|
|
|
|
|
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-06-04 01:38:25 +02:00
|
|
|
stableNixpkgs = import depot.third_party.sources.nixpkgs-stable commonNixpkgsArgs;
|
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-06-21 22:29:03 +02:00
|
|
|
inherit (stableNixpkgs)
|
|
|
|
# bat syntaxes changed with syntect 5.0, but cheddar is still on 4.x
|
|
|
|
# TODO(tazjin): upgrade cheddar to syntect 5.0
|
|
|
|
bat
|
|
|
|
;
|
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
|
2022-06-04 01:38:25 +02:00
|
|
|
import nixpkgsSrc (commonNixpkgsArgs // {
|
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 [ ]);
|
2022-06-04 01:38:25 +02:00
|
|
|
})
|