Files
nixpkgs/pkgs/development/php-packages/igbinary/default.nix
T
2026-01-18 13:07:53 +01:00

26 lines
528 B
Nix

{
buildPecl,
lib,
php,
}:
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 ];
broken = lib.versionAtLeast php.version "8.5";
};
}