depot/third_party/nixpkgs/pkgs/development/php-packages/yaml/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

19 lines
451 B
Nix

{ buildPecl, lib, pkg-config, libyaml }:
buildPecl {
pname = "yaml";
version = "2.2.2";
sha256 = "sha256-EZBS8EYdV9hvRMJS+cmy3XQ0hscBwaCroK6+zdDYuCo=";
configureFlags = [ "--with-yaml=${libyaml}" ];
nativeBuildInputs = [ pkg-config ];
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;
};
}