Files
nixpkgs/pkgs
talyz ca8b8a26e9 php: Add enabledExtensions attribute to PHP derivations
This provides a means to build a PHP package based on a list of
extensions from another.

For example, to generate a package with all default extensions
enabled, except opcache, but with ImageMagick:

php.withExtensions (e:
  (lib.filter (e: e != php.extensions.opcache) php.enabledExtensions)
  ++ [ e.imagick ])
2020-04-05 16:46:38 +02:00
..
2020-03-28 19:23:28 -03:00
2020-03-28 20:31:00 +01:00
2020-03-28 23:37:26 +01:00