mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
19 lines
466 B
Nix
19 lines
466 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;
|
|
};
|
|
}
|