diff options
author | sterni <sternenseemann@systemli.org> | 2024-11-18T11·13+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-11-18T14·01+0000 |
commit | 5daaaa2f0bdad7056f1da4817ca2f49eb4e3fbf4 (patch) | |
tree | 1df8a51e713bb2ea051bd62612e18c3d603c1724 /third_party/overlays | |
parent | a6f777206acac0e537aa8892da419879e0972315 (diff) |
chore(3p/sources): bump channels & overlays r/8940
* //3p/overlays/tvl: build nixos-option with latest Nix version (2.24) as is required now. It would be nice to avoid this somehow to prevent NixOS machines in depot having to carry around two versions of Nix. Maybe we can at least use a statically linked nixos-option? * //3p/{gerrit,gerrit_plugins}: update deps hash * //tvix/eval: adjust our nixVersion “user agent” so that it'll pass the new 2.3.17 minimum version nixpkgs prescribes (to check for zstd support when substituting from the binary cache). Change-Id: I4eb715afdc3dbb857340839f08ce86612aa7f117 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12805 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/overlays')
-rw-r--r-- | third_party/overlays/tvl.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 3835f07c9664..58c48ebf381f 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -16,11 +16,17 @@ depot.nix.readTree.drvTargets { }; }; }; - nix_latest = super.nix.override ({ + nix_latest_stable = super.nix.override ({ # flaky tests, long painful build, see https://github.com/NixOS/nixpkgs/pull/266443 withAWS = false; }); + # No longer builds with Nix 2.3 after + # https://github.com/nixos/nixpkgs/commit/5f9d2d95721cdf20ace744f2db75ad70a7aedd3a + nixos-option = super.nixos-option.override { + nix = self.nix_latest_stable; + }; + home-manager = super.home-manager.overrideAttrs (_: { src = depot.third_party.sources.home-manager; version = "git-" |