nixVersions.nix_2_9: add non-existing output patch

This commit is contained in:
zowoq 2022-11-17 07:15:58 +10:00
parent 5c45e5d3d9
commit da14dfafd9

View File

@ -81,6 +81,14 @@ in lib.makeExtensible (self: {
nix_2_9 = common {
version = "2.9.2";
sha256 = "sha256-uZCaBo9rdWRO/AlQMvVVjpAwzYijB2H5KKQqde6eHkg=";
patches = [
(fetchpatch {
# https://github.com/NixOS/nix/pull/7283
name = "fix-requires-non-existing-output.patch";
url = "https://github.com/NixOS/nix/commit/3ade5f5d6026b825a80bdcc221058c4f14e10a27.patch";
sha256 = "sha256-s1ybRFCjQaSGj7LKu0Z5g7UiHqdJGeD+iPoQL0vaiS0=";
})
];
};
nix_2_10 = common {