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

buildPecl {
  pname = "yaml";

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

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

  nativeBuildInputs = [ pkgs.pkg-config ];

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