2021-04-10 18:05:16 +02:00
|
|
|
# This file imports the pinned nixpkgs sets and applies relevant
|
|
|
|
# modifications, such as our overlays.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2021-04-10 23:43:41 +02:00
|
|
|
{ depot, externalArgs, ... }:
|
2021-04-10 18:05:16 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
# This provides the sources of nixpkgs. We track both
|
|
|
|
# nixos-unstable, and the current stable channel of the latest NixOS
|
|
|
|
# release.
|
|
|
|
|
2021-12-07 20:11:31 +01:00
|
|
|
# Tracking nixpkgs master as of 2021-12-07.
|
2021-04-10 18:05:16 +02:00
|
|
|
unstableHashes = {
|
2021-12-07 20:11:31 +01:00
|
|
|
commit = "f4eddfe2fdef11dcbcc4139c6b91b78a9e1c28c5";
|
|
|
|
sha256 = "196agg765k1ai9m2nh7hgc5lzhff9dkv80q2ij0yyacngjbzy5dd";
|
2021-04-10 18:05:16 +02:00
|
|
|
};
|
|
|
|
|
2021-12-07 10:02:42 +01:00
|
|
|
# Tracking nixos-21.05 as of 2021-12-07.
|
2021-04-10 18:05:16 +02:00
|
|
|
stableHashes = {
|
2021-12-07 10:02:42 +01:00
|
|
|
commit = "4a8751d694b46340072d95409804f59b98326f44";
|
|
|
|
sha256 = "14pmmd82s0anknd6g57i0c1795766bvylqalf9kz730q1v0ransl";
|
2021-04-10 18:05:16 +02:00
|
|
|
};
|
|
|
|
|
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.
|
|
|
|
nixpkgsSrc = externalArgs.nixpkgsBisectPath or (fetchTarball {
|
2021-04-10 18:05:16 +02:00
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${unstableHashes.commit}.tar.gz";
|
|
|
|
sha256 = unstableHashes.sha256;
|
2021-04-10 23:43:41 +02:00
|
|
|
});
|
|
|
|
|
2021-04-10 18:05:16 +02:00
|
|
|
stableNixpkgsSrc = fetchTarball {
|
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${stableHashes.commit}.tar.gz";
|
|
|
|
sha256 = stableHashes.sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Stable package set is imported, but not exposed, to overlay
|
|
|
|
# required packages into the unstable set.
|
|
|
|
stableNixpkgs = import stableNixpkgsSrc {};
|
|
|
|
|
|
|
|
# Overlay for packages that should come from the stable channel
|
|
|
|
# instead (e.g. because something is broken in unstable).
|
|
|
|
stableOverlay = self: super: {
|
2021-09-30 13:38:02 +02:00
|
|
|
# Nothing picked from stable presently.
|
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 = {
|
|
|
|
unstable = unstableHashes.commit;
|
|
|
|
stable = stableHashes.commit;
|
|
|
|
};
|
|
|
|
};
|
2021-04-10 18:05:16 +02:00
|
|
|
in import nixpkgsSrc {
|
|
|
|
config.allowUnfree = true;
|
|
|
|
config.allowBroken = true;
|
|
|
|
overlays = [
|
2021-08-12 15:15:53 +02:00
|
|
|
commitsOverlay
|
2021-04-10 18:05:16 +02:00
|
|
|
stableOverlay
|
|
|
|
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-10 18:05:16 +02:00
|
|
|
];
|
|
|
|
}
|