phpPackages.imagick: fix build with php73

This commit is contained in:
Izorkin 2018-12-10 17:40:37 +03:00 committed by Franz Pletz
parent 23190fb3a9
commit cea4312e56
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -111,7 +111,7 @@ let
sha256 = "0z2nc92xfc5axa9f2dy95rmsd2c81q8cs1pm4anh0a50x9g5ng0z";
configureFlags = [ "--with-imagick=${pkgs.imagemagick.dev}" ];
nativeBuildInputs = [ pkgs.pkgconfig ];
buildInputs = [ pkgs.pcre ];
buildInputs = [ (if isPhp73 then pkgs.pcre2 else pkgs.pcre) ];
};
memcached = buildPecl rec {