summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/pmd
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-11-09 04:37:30 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2018-11-09 13:37:30 +0100
commit5e02b5e689a3cd799d4adee5489ddb60c781c18e (patch)
tree0ef29c198f8842c4fb97de30ee6da7a3782d0663 /pkgs/development/tools/analysis/pmd
parent2e89de61c59ed6f302f16f026855f48f86e5a72c (diff)
downloadnixpkgs-5e02b5e689a3cd799d4adee5489ddb60c781c18e.tar
nixpkgs-5e02b5e689a3cd799d4adee5489ddb60c781c18e.tar.gz
nixpkgs-5e02b5e689a3cd799d4adee5489ddb60c781c18e.tar.bz2
nixpkgs-5e02b5e689a3cd799d4adee5489ddb60c781c18e.tar.lz
nixpkgs-5e02b5e689a3cd799d4adee5489ddb60c781c18e.tar.xz
nixpkgs-5e02b5e689a3cd799d4adee5489ddb60c781c18e.tar.zst
nixpkgs-5e02b5e689a3cd799d4adee5489ddb60c781c18e.zip
pmd: 6.8.0 -> 6.9.0 (#50015)
* pmd: 6.8.0 -> 6.9.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pmd/versions
Diffstat (limited to 'pkgs/development/tools/analysis/pmd')
-rw-r--r--pkgs/development/tools/analysis/pmd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/analysis/pmd/default.nix b/pkgs/development/tools/analysis/pmd/default.nix
index 89b0a33c068..3724494da11 100644
--- a/pkgs/development/tools/analysis/pmd/default.nix
+++ b/pkgs/development/tools/analysis/pmd/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "pmd-${version}";
-  version = "6.8.0";
+  version = "6.9.0";
 
   buildInputs = [ unzip ];
 
   src = fetchurl {
     url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip";
-    sha256 = "1vfkg2l3sl5ahhs89nvkg0z1ah1k67c44nwpvaymq73rb2bb8ibr";
+    sha256 = "13w07f68gfcjy3a2zk4z4b0f95qscbkjlylckphmyxhw7vmgzlmn";
   };
 
   installPhase = ''
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "An extensible cross-language static code analyzer.";
+    description = "An extensible cross-language static code analyzer";
     homepage = https://pmd.github.io/;
     platforms = platforms.unix;
     license = with licenses; [ bsdOriginal asl20 ];