We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pcntl
1 parent e65285d commit 3f99d8eCopy full SHA for 3f99d8e
pkgs/package-overrides.nix
@@ -160,6 +160,19 @@ in
160
];
161
});
162
163
+ pcntl = prev.extensions.pcntl.overrideAttrs (attrs: {
164
+ patches =
165
+ attrs.patches or []
166
+ ++ lib.optionals (lib.versionAtLeast prev.php.version "8.2") [
167
+ # Fix pcntl builds
168
+ # More info at https://github.com/php/php-src/pull/9284
169
+ (pkgs.fetchpatch {
170
+ url = "https://github.com/php/php-src/commit/20f4f84274f939d5f061bb1fccd23ce563ece6d0.patch";
171
+ sha256 = "PJrV69RUBG9xSKLm8sffIp8WgsmxWLtK2iLQFWCjmXQ=";
172
+ })
173
+ ];
174
+ });
175
+
176
intl = prev.extensions.intl.overrideAttrs (attrs: {
177
doCheck = if lib.versionOlder prev.php.version "7.2" then false else attrs.doCheck or true;
178
patches =
0 commit comments