Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

build-pecl: fix strictDeps

phpize from the php package itself is needed in autoreconfPhase

authored by ofalvai.tngl.sh and committed by Sandro Jäckel d7ba1edf a31f38ad

+2
+2
pkgs/build-support/php/build-pecl.nix
··· 41 42 inherit src; 43 44 nativeBuildInputs = [ 45 autoreconfHook 46 re2c 47 ] ++ nativeBuildInputs;
··· 41 42 inherit src; 43 44 + strictDeps = true; 45 nativeBuildInputs = [ 46 + php 47 autoreconfHook 48 re2c 49 ] ++ nativeBuildInputs;