9c6d255489
GitOrigin-RevId: 8133b9cb5f7c00d4fe31c8c2c4b525bc2650bfc0
14 lines
291 B
Nix
14 lines
291 B
Nix
{ buildPecl, lib, pkgs }:
|
|
|
|
buildPecl {
|
|
pname = "yaml";
|
|
|
|
version = "2.0.4";
|
|
sha256 = "1036zhc5yskdfymyk8jhwc34kvkvsn5kaf50336153v4dqwb11lp";
|
|
|
|
configureFlags = [ "--with-yaml=${pkgs.libyaml}" ];
|
|
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
}
|