about summary refs log tree commit diff
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-03-01 19:52:13 +0100
committerElis Hirwing <elis@hirwing.se>2018-03-01 19:57:55 +0100
commit8061a9a46266d7c97272504d936229bad19d4326 (patch)
tree84f528368c0f5929355ed6d9c912aec7a3a37129
parent8d3aa2f2b9e9ce8bb3e24468023af298fd72cdbb (diff)
downloadnixlib-8061a9a46266d7c97272504d936229bad19d4326.tar
nixlib-8061a9a46266d7c97272504d936229bad19d4326.tar.gz
nixlib-8061a9a46266d7c97272504d936229bad19d4326.tar.bz2
nixlib-8061a9a46266d7c97272504d936229bad19d4326.tar.lz
nixlib-8061a9a46266d7c97272504d936229bad19d4326.tar.xz
nixlib-8061a9a46266d7c97272504d936229bad19d4326.tar.zst
nixlib-8061a9a46266d7c97272504d936229bad19d4326.zip
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.
-rw-r--r--pkgs/top-level/php-packages.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix
index 39044b9ccacd..b91e0bd87bba 100644
--- a/pkgs/top-level/php-packages.nix
+++ b/pkgs/top-level/php-packages.nix
@@ -443,11 +443,11 @@ let
 
   phpcs = pkgs.stdenv.mkDerivation rec {
     name = "phpcs-${version}";
-    version = "2.6.0";
+    version = "3.2.3";
 
     src = pkgs.fetchurl {
       url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcs.phar";
-      sha256 = "02mlv44x508rnkzkwiyh7lg2ah7aqyxcq65q9ycj06czm0xdzs41";
+      sha256 = "193axz56j1kyq458q0y38m99bx31jjjldfg6bv71vgm6zh4rvvs1";
     };
 
     phases = [ "installPhase" ];
@@ -464,7 +464,7 @@ let
       description = "PHP coding standard tool";
       license = licenses.bsd3;
       homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
-      maintainers = with maintainers; [ javaguirre ];
+      maintainers = with maintainers; [ javaguirre etu ];
     };
   };