3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/php-packages/yaml/default.nix

20 lines
451 B
Nix
Raw Normal View History

{ buildPecl, lib, pkg-config, libyaml }:
buildPecl {
pname = "yaml";
2021-01-21 00:55:02 +00:00
version = "2.2.1";
sha256 = "sha256-4XrQTnUuJf0Jm93S350m3+8YPI0AxBebydei4cl9eBk=";
configureFlags = [ "--with-yaml=${libyaml}" ];
nativeBuildInputs = [ pkg-config ];
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;
};
}