phpPackages.phpcs: 2.6.0 -> 3.2.3

Release notes:
https://github.com/squizlabs/PHP_CodeSniffer/releases/tag/3.2.3

Plus an infinite of versions before that.
This commit is contained in:
Elis Hirwing 2018-03-01 19:52:13 +01:00
parent 8d3aa2f2b9
commit 8061a9a462
No known key found for this signature in database
GPG Key ID: D57EFA625C9A925F

View File

@ -443,11 +443,11 @@ let
phpcs = pkgs.stdenv.mkDerivation rec { phpcs = pkgs.stdenv.mkDerivation rec {
name = "phpcs-${version}"; name = "phpcs-${version}";
version = "2.6.0"; version = "3.2.3";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcs.phar"; url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcs.phar";
sha256 = "02mlv44x508rnkzkwiyh7lg2ah7aqyxcq65q9ycj06czm0xdzs41"; sha256 = "193axz56j1kyq458q0y38m99bx31jjjldfg6bv71vgm6zh4rvvs1";
}; };
phases = [ "installPhase" ]; phases = [ "installPhase" ];
@ -464,7 +464,7 @@ let
description = "PHP coding standard tool"; description = "PHP coding standard tool";
license = licenses.bsd3; license = licenses.bsd3;
homepage = https://squizlabs.github.io/PHP_CodeSniffer/; homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
maintainers = with maintainers; [ javaguirre ]; maintainers = with maintainers; [ javaguirre etu ];
}; };
}; };