summaryrefslogtreecommitdiff
path: root/pkgs/development/php-packages/igbinary/default.nix
blob: a4be541075bc75291db2072ee835525e8594eacc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
    teams = [ lib.teams.php ];
  };
}