| 7 Jul 2023 |
@drupol:matrix.org | I can test with a temporary commit. | 08:01:42 |
@drupol:matrix.org | I don't have a darwin here. | 08:01:47 |
@drupol:matrix.org | Let me do that. | 08:01:50 |
@etu:failar.nu | diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix
index 2be6447f83b..83dd081003d 100644
--- a/pkgs/top-level/php-packages.nix
+++ b/pkgs/top-level/php-packages.nix
@@ -226,8 +226,6 @@ lib.makeScope pkgs.newScope (self: with self; {
imagick = callPackage ../development/php-packages/imagick { };
- inotify = callPackage ../development/php-packages/inotify { };
-
mailparse = callPackage ../development/php-packages/mailparse { };
maxminddb = callPackage ../development/php-packages/maxminddb { };
@@ -291,7 +289,9 @@ lib.makeScope pkgs.newScope (self: with self; {
xdebug = callPackage ../development/php-packages/xdebug { };
yaml = callPackage ../development/php-packages/yaml { };
- } // (
+ } // (lib.optionalAttrs (!stdenv.isDarwin) {
+ inotify = callPackage ../development/php-packages/inotify { };
+ }) // (
let
# This list contains build instructions for different modules that one may
# want to build.
| 08:04:22 |
@drupol:matrix.org | that's an alternative indeed | 08:08:10 |
@drupol:matrix.org |  Download image.png | 08:09:03 |
@drupol:matrix.org | I would use the enable attribute | 08:10:07 |
@drupol:matrix.org | I guess that's why it has been created. | 08:11:19 |
@drupol:matrix.org | I should have used that for the blackfire extension as well. | 08:11:32 |
@etu:failar.nu | But that's only for "built in" extensions right? | 08:12:00 |
@drupol:matrix.org | No | 08:12:07 |
@drupol:matrix.org | It's for all extensions | 08:12:17 |
@etu:failar.nu | You sure? Because we have that list named extensionData which are for built in extensions only where it passes each of the entries through mkExtension and also filters on enable | 08:14:36 |
@drupol:matrix.org | Wait. | 08:14:35 |
@drupol:matrix.org | You're maybe right. | 08:14:39 |
@drupol:matrix.org | Yes, let me double check. | 08:14:44 |
@etu:failar.nu | While the extensions list above is already assigned to the extensions attribute | 08:15:02 |