We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a5d646b + 1dfe863 commit 339f145Copy full SHA for 339f145
pkgs/tools/package-management/nix/default.nix
@@ -178,13 +178,14 @@ lib.makeExtensible (
178
hash = "sha256-NLGXPLjENLeKVOg3OZgHXZ+1x6sPIKq9FHH8pxbCrDI=";
179
};
180
}).appendPatches
181
- [
182
- (fetchpatch2 {
+ (
+ # issues on darwin: https://github.com/NixOS/nixpkgs/pull/468208#issuecomment-3626314109
183
+ lib.optional stdenv.isLinux (fetchpatch2 {
184
name = "nix-2.31-14240-sri-error-message.patch";
185
url = "https://github.com/NixOS/nix/commit/56751b1cd2c4700c71c545f2246adf602c97fdf5.patch";
186
hash = "sha256-CerSBAI+H2RqPp9jsCP0QIM2rZYx3yBZHVVUAztgc18=";
187
})
- ];
188
+ );
189
190
nix_2_31 = addTests "nix_2_31" self.nixComponents_2_31.nix-everything;
191
0 commit comments