about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/php-packages/igbinary/default.nix
blob: 7a321cc90b4e132e5fe089bcd8fc597cc2008736 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildPecl, lib }:

buildPecl {
  pname = "igbinary";

  version = "3.2.1";
  sha256 = "sha256-YBYgz/07PlWWIAmcBWm4xCR/Ap7BitwCBr8m+ONXU9s=";

  configureFlags = [ "--enable-igbinary" ];
  makeFlags = [ "phpincludedir=$(dev)/include" ];
  outputs = [ "out" "dev" ];

  meta.maintainers = lib.teams.php.members;
}