5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
21 lines
476 B
Nix
21 lines
476 B
Nix
{ buildPecl, lib }:
|
|
|
|
buildPecl {
|
|
pname = "igbinary";
|
|
version = "3.2.14";
|
|
sha256 = "sha256-YzcUek+4iAclZmdIN72pko7gbufwEUtDOLhsgWIykl0=";
|
|
|
|
configureFlags = [ "--enable-igbinary" ];
|
|
makeFlags = [ "phpincludedir=$(dev)/include" ];
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
meta = {
|
|
description = "Binary serialization for PHP";
|
|
homepage = "https://github.com/igbinary/igbinary/";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
}
|