nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildPecl, lib }:
2
3buildPecl {
4 pname = "igbinary";
5
6 version = "3.2.7";
7 sha256 = "sha256-0NwNC1aphfT1LOogcXEz09oFNoh2vA+UMXweYOAxnn0=";
8
9 configureFlags = [ "--enable-igbinary" ];
10 makeFlags = [ "phpincludedir=$(dev)/include" ];
11 outputs = [ "out" "dev" ];
12
13 meta = with lib; {
14 description = "Binary serialization for PHP";
15 license = licenses.bsd3;
16 homepage = "https://github.com/igbinary/igbinary/";
17 maintainers = teams.php.members;
18 };
19}