nixpkgs/pkgs/development/php-packages/yaml/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
452 B
Nix
Raw Normal View History

{ buildPecl, lib, pkg-config, libyaml }:
buildPecl {
pname = "yaml";
2021-12-08 06:26:56 +00:00
version = "2.2.2";
sha256 = "sha256-EZBS8EYdV9hvRMJS+cmy3XQ0hscBwaCroK6+zdDYuCo=";
configureFlags = [ "--with-yaml=${libyaml}" ];
nativeBuildInputs = [ pkg-config ];
2021-06-08 09:50:05 +00:00
meta = with lib; {
description = "YAML-1.1 parser and emitter";
license = licenses.mit;
2022-10-27 09:40:56 +00:00
homepage = "https://bd808.com/pecl-file_formats-yaml/";
2021-06-08 09:50:05 +00:00
maintainers = teams.php.members;
};
}