summary refs log tree commit diff
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-03-01 19:54:08 +0100
committerElis Hirwing <elis@hirwing.se>2018-03-01 19:58:21 +0100
commit1e4763f1bedd25a51b02d12fd292244bd2bca3a5 (patch)
treead05de188da30db5255cff40d98b21bd854b577e
parent8061a9a46266d7c97272504d936229bad19d4326 (diff)
downloadnixpkgs-1e4763f1bedd25a51b02d12fd292244bd2bca3a5.tar
nixpkgs-1e4763f1bedd25a51b02d12fd292244bd2bca3a5.tar.gz
nixpkgs-1e4763f1bedd25a51b02d12fd292244bd2bca3a5.tar.bz2
nixpkgs-1e4763f1bedd25a51b02d12fd292244bd2bca3a5.tar.lz
nixpkgs-1e4763f1bedd25a51b02d12fd292244bd2bca3a5.tar.xz
nixpkgs-1e4763f1bedd25a51b02d12fd292244bd2bca3a5.tar.zst
nixpkgs-1e4763f1bedd25a51b02d12fd292244bd2bca3a5.zip
phpPackages.phpcbf: 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 b91e0bd87bb..d337c7041f1 100644
--- a/pkgs/top-level/php-packages.nix
+++ b/pkgs/top-level/php-packages.nix
@@ -470,11 +470,11 @@ let
 
   phpcbf = pkgs.stdenv.mkDerivation rec {
     name = "phpcbf-${version}";
-    version = "2.6.0";
+    version = "3.2.3";
 
     src = pkgs.fetchurl {
       url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcbf.phar";
-      sha256 = "1ijf52cgd85ypvw431nnmzij6156ryhfvmajpkr7plfw0iccqc5j";
+      sha256 = "00p0l01shxx1h6g26j2dbfrp9j7im541das4xps4wrsvc4h4da9l";
     };
 
     phases = [ "installPhase" ];
@@ -491,7 +491,7 @@ let
       description = "PHP coding standard beautifier and fixer";
       license = licenses.bsd3;
       homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
-      maintainers = with maintainers; [ cmcdragonkai ];
+      maintainers = with maintainers; [ cmcdragonkai etu ];
     };
   };
 }; in self