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
466 B
Nix
Raw Normal View History

{ buildPecl, lib, pkg-config, libyaml }:
buildPecl {
pname = "yaml";
2023-06-30 06:16:52 +00:00
version = "2.2.3";
sha256 = "sha256-WTfrlyLd9tZGJnmc+gJFmP8kUuoVeZLk5nMxolP5AjY=";
2023-06-30 06:23:51 +00:00
configureFlags = [ "--with-yaml=${libyaml.dev}" ];
2023-06-30 06:23:51 +00:00
nativeBuildInputs = [ pkg-config libyaml ];
2023-06-30 06:16:52 +00:00
meta = {
2021-06-08 09:50:05 +00:00
description = "YAML-1.1 parser and emitter";
2023-06-30 06:16:52 +00:00
license = lib.licenses.mit;
homepage = "https://github.com/php/pecl-file_formats-yaml";
maintainers = lib.teams.php.members;
2021-06-08 09:50:05 +00:00
};
}