nixpkgs/pkgs/development/php-packages/igbinary/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
466 B
Nix
Raw Normal View History

{ buildPecl, lib }:
buildPecl {
pname = "igbinary";
version = "3.2.14";
sha256 = "sha256-YzcUek+4iAclZmdIN72pko7gbufwEUtDOLhsgWIykl0=";
configureFlags = [ "--enable-igbinary" ];
makeFlags = [ "phpincludedir=$(dev)/include" ];
outputs = [ "out" "dev" ];
meta = {
2021-06-08 09:50:05 +00:00
description = "Binary serialization for PHP";
homepage = "https://github.com/igbinary/igbinary/";
license = lib.licenses.bsd3;
maintainers = lib.teams.php.members;
2021-06-08 09:50:05 +00:00
};
}