nixVersions.nix_2_9: add patch

this has been backported but not been in a release
This commit is contained in:
Artturin 2022-06-04 15:38:45 +03:00
parent 7d6eeeb3d0
commit b28b489abc

View file

@ -88,6 +88,14 @@ in lib.makeExtensible (self: {
nix_2_9 = common {
version = "2.9.0";
sha256 = "sha256-W6aTsTpCTb+vXQEXDjnKqetOuJmEfSuK2CXvAMqwo74=";
patches = [
# can be removed when updated to 2.9.1
(fetchpatch {
name = "fix-segfault-in-git-fetcher";
url = "https://github.com/NixOS/nix/commit/bc4759345538c89e1f045aaabcc0cafe4ecca12a.patch";
sha256 = "sha256-UrfH4M7a02yfE9X3tA1Pwhw4RacBW+rShYkl7ybG64I=";
})
];
};
stable = self.nix_2_9;