about summary refs log tree commit diff
path: root/pkgs/development/php-packages/igbinary/default.nix
blob: b2f8c270c4e26e7bbd1a5a6a652a13a1db9dcbfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
  };
}