2020-10-11 17:56:33 +02:00
|
|
|
{ buildPecl, lib }:
|
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "igbinary";
|
|
|
|
|
2021-01-21 01:59:29 +01:00
|
|
|
version = "3.2.1";
|
|
|
|
sha256 = "sha256-YBYgz/07PlWWIAmcBWm4xCR/Ap7BitwCBr8m+ONXU9s=";
|
2020-10-11 17:56:33 +02:00
|
|
|
|
|
|
|
configureFlags = [ "--enable-igbinary" ];
|
|
|
|
makeFlags = [ "phpincludedir=$(dev)/include" ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-06-08 11:50:05 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Binary serialization for PHP";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = "https://github.com/igbinary/igbinary/";
|
|
|
|
maintainers = teams.php.members;
|
|
|
|
};
|
2020-10-11 17:56:33 +02:00
|
|
|
}
|