at 22.05-pre 20 lines 520 B view raw
1{ buildPecl, lib, php }: 2 3buildPecl { 4 pname = "mailparse"; 5 6 version = "3.1.1"; 7 sha256 = "02nfjbgyjbr48rw6r46gd713hkxh7nghg2rcbr726zhzz182c3y7"; 8 9 internalDeps = [ php.extensions.mbstring ]; 10 postConfigure = '' 11 echo "#define HAVE_MBSTRING 1" >> config.h 12 ''; 13 14 meta = with lib; { 15 description = "Mailparse is an extension for parsing and working with email messages"; 16 license = licenses.php301; 17 homepage = "https://pecl.php.net/package/mailparse"; 18 maintainers = lib.teams.php.members; 19 }; 20}