Files
nixpkgs/pkgs/development/php-packages/mailparse/default.nix
T
2025-04-25 22:20:17 -03:00

25 lines
514 B
Nix

{
buildPecl,
lib,
php,
}:
buildPecl {
pname = "mailparse";
version = "3.1.8";
hash = "sha256-Wb6rTvhRdwxJW6egcmq0DgmBNUaaEdnI5mWwiclu/C8=";
internalDeps = [ php.extensions.mbstring ];
postConfigure = ''
echo "#define HAVE_MBSTRING 1" >> config.h
'';
meta = with lib; {
description = "Mailparse is an extension for parsing and working with email messages";
license = licenses.php301;
homepage = "https://pecl.php.net/package/mailparse";
teams = [ lib.teams.php ];
};
}