2020-10-11 19:00:38 +01:00
|
|
|
{ buildPecl, lib, pkgs }:
|
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "yaml";
|
|
|
|
|
2020-10-24 09:04:57 +01:00
|
|
|
version = "2.1.0";
|
|
|
|
sha256 = "0rmn2irzny24ivzc09ss46s2s48i0zy2cww7ikphljqbfx6zdjss";
|
2020-10-11 19:00:38 +01:00
|
|
|
|
|
|
|
configureFlags = [ "--with-yaml=${pkgs.libyaml}" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
|
|
|
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
|
|
}
|