Skip to content

Commit

Permalink
Merge pull request #1202 from flyingcircusio/PL-133165-nix-2.3-backport
Browse files Browse the repository at this point in the history
[21.05][PL-133165] pkgs/overlay: nix: 2.3.16 -> 2.3.18
  • Loading branch information
osnyx authored Dec 12, 2024
2 parents b9631e2 + da63ef8 commit 6fa00d9
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Impact


### NixOS XX.XX platform

- Updated Nix to 2.3.18 to be able to download `zstd`-compressed paths from our Hydra. It will
switch from `xz` to `zstd` to increase its throughput.
26 changes: 26 additions & 0 deletions pkgs/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,32 @@ in {
};
});

nix = super.nix.overrideAttrs (old: rec {
name = "nix-${version}";
version = "2.3.18";
src = self.fetchFromGitHub {
owner = "NixOS";
repo = "nix";
rev = version;
hash = "sha256-jBz2Ub65eFYG+aWgSI3AJYvLSghio77fWQiIW1svA9U=";
};
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [
self.libxslt
self.libxml2
self.docbook_xsl_ns
self.docbook5
self.bison
self.flex
self.jq
self.autoconf-archive
self.autoreconfHook
];
buildInputs = (old.buildInputs or []) ++ [
self.libarchive
self.zstd
];
});

matrix-synapse = super.matrix-synapse.overrideAttrs(orig: rec {
pname = "matrix-synapse";
version = "1.47.1";
Expand Down

0 comments on commit 6fa00d9

Please sign in to comment.