lol

Merge pull request #85226 from etu/update-phpstan

php.packages.phpstan: 0.12.14 -> 0.12.18

authored by

Kim Lindberger and committed by
GitHub
3dbfa915 57087ea2

+3 -3
+3 -3
pkgs/top-level/php-packages.nix
··· 203 203 }; 204 204 205 205 phpstan = mkDerivation rec { 206 - version = "0.12.14"; 206 + version = "0.12.18"; 207 207 pname = "phpstan"; 208 208 209 209 src = pkgs.fetchurl { 210 210 url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar"; 211 - sha256 = "JAq1/+bVhTgKRR7oFusqZ/yBOYewaOM38ZoiCjirsTg="; 211 + sha256 = "0xf0q2z6rhpnbys53si05mddfyjn3wx5wc8zx5y6dv5fzw6z7rch"; 212 212 }; 213 213 214 214 phases = [ "installPhase" ]; ··· 217 217 installPhase = '' 218 218 mkdir -p $out/bin 219 219 install -D $src $out/libexec/phpstan/phpstan.phar 220 - makeWrapper ${php}/bin/php $out/bin/phpstan \ 220 + makeWrapper ${phpWithExtensions}/bin/php $out/bin/phpstan \ 221 221 --add-flags "$out/libexec/phpstan/phpstan.phar" 222 222 ''; 223 223