about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/php-packages/yaml/default.nix
blob: 9bd30ff4e3c41983c8dc68663ff6e64221998926 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildPecl, lib, pkg-config, libyaml }:

buildPecl {
  pname = "yaml";

  version = "2.2.1";
  sha256 = "sha256-4XrQTnUuJf0Jm93S350m3+8YPI0AxBebydei4cl9eBk=";

  configureFlags = [ "--with-yaml=${libyaml}" ];

  nativeBuildInputs = [ pkg-config ];

  meta.maintainers = lib.teams.php.members;
}