phpExtensions.yaml: Move to separate directory

This commit is contained in:
Elis Hirwing 2020-10-11 20:00:38 +02:00
parent e810b999eb
commit 6d0abdd9c1
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
2 changed files with 15 additions and 14 deletions

View file

@ -0,0 +1,14 @@
{ 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;
}

View file

@ -164,20 +164,7 @@ in
xdebug = callPackage ../development/php-packages/xdebug { };
yaml = buildPecl {
version = "2.0.4";
pname = "yaml";
sha256 = "1036zhc5yskdfymyk8jhwc34kvkvsn5kaf50336153v4dqwb11lp";
configureFlags = [
"--with-yaml=${pkgs.libyaml}"
];
nativeBuildInputs = [ pkgs.pkgconfig ];
meta.maintainers = lib.teams.php.members;
};
yaml = callPackage ../development/php-packages/yaml { };
zmq = buildPecl {
version = "1.1.3";