mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
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;
|
|
};
|
|
}
|