Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 16 lines 491 B view raw
1{ buildPecl, lib }: 2 3buildPecl rec { 4 version = "2.2.0RC2"; 5 pname = "msgpack"; 6 7 sha256 = "sha256-bVV043knbk7rionXqB70RKa1zlJ5K/Nw0oTXZllmJOg="; 8 9 meta = with lib; { 10 changelog = "https://pecl.php.net/package-info.php?package=msgpack&version=${version}"; 11 description = "PHP extension for interfacing with MessagePack"; 12 license = licenses.bsd3; 13 homepage = "https://github.com/msgpack/msgpack-php"; 14 maintainers = teams.php.members ++ [ maintainers.ostrolucky ]; 15 }; 16}