-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
php: add imagick + mailparse support #42363
Conversation
Okay, since # ...
nixpkgs.config.packageOverrides = pkgs: {
phpCustom = (pkgs.php.merge ({
name = "php-custom";
configurateFlags = ["--enable-imagick" "--enable-mailparse"];
}));
# ...
} Unfortunately, this did not yield the expected result, i.e. Update: This did the trick: # ...
environment.etc."php.d/custom.ini".text = ''
extension = ${pkgs.phpPackages.imagick}/lib/php/extensions/imagick.so
extension = ${pkgs.phpPackages.mailparse}/lib/php/extensions/mailparse.so
'';
# ... So I think this can be considered tested now. |
Actually the
|
d1e94f3
to
ef3d068
Compare
Are you sure this is needed? The configure script outputs the following:
|
Thanks, @fpletz. Looks like it is indeed not needed. :-) |
Motivation for this change
I have project in which I use the php PECL extensions imagick and mailparse.
Even though these are already available as packages
phpPackages.imagick
andphpPackages.mailparse
, they cannot be used yet, because they require php to be compiled with the--enable-imagick
and--enable-mailparse
flags.This PR adds those flags.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)