2021-02-27 10:29:20 +00:00
|
|
|
{ buildPecl, lib, pkg-config, libyaml }:
|
2020-10-11 19:00:38 +01:00
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "yaml";
|
|
|
|
|
2021-01-21 00:55:02 +00:00
|
|
|
version = "2.2.1";
|
|
|
|
sha256 = "sha256-4XrQTnUuJf0Jm93S350m3+8YPI0AxBebydei4cl9eBk=";
|
2020-10-11 19:00:38 +01:00
|
|
|
|
2021-02-27 10:29:20 +00:00
|
|
|
configureFlags = [ "--with-yaml=${libyaml}" ];
|
2020-10-11 19:00:38 +01:00
|
|
|
|
2021-02-27 10:29:20 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-10-11 19:00:38 +01:00
|
|
|
|
2021-06-08 10:50:05 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "YAML-1.1 parser and emitter";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = "http://bd808.com/pecl-file_formats-yaml/";
|
|
|
|
maintainers = teams.php.members;
|
|
|
|
};
|
2020-10-11 19:00:38 +01:00
|
|
|
}
|