summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-10-11 04:20:01 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2018-10-11 13:20:01 +0200
commite1c5b4793532f3e85afa44b7816d76c7b9654950 (patch)
tree10b31dd883a1df615356d080e4db5ec87b9b436d /pkgs/development/tools/analysis
parentb6d5930c24b05a063d69111b2b737383bbb4749d (diff)
downloadnixlib-e1c5b4793532f3e85afa44b7816d76c7b9654950.tar
nixlib-e1c5b4793532f3e85afa44b7816d76c7b9654950.tar.gz
nixlib-e1c5b4793532f3e85afa44b7816d76c7b9654950.tar.bz2
nixlib-e1c5b4793532f3e85afa44b7816d76c7b9654950.tar.lz
nixlib-e1c5b4793532f3e85afa44b7816d76c7b9654950.tar.xz
nixlib-e1c5b4793532f3e85afa44b7816d76c7b9654950.tar.zst
nixlib-e1c5b4793532f3e85afa44b7816d76c7b9654950.zip
pmd: 6.7.0 -> 6.8.0 (#47736)
* pmd: 6.7.0 -> 6.8.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

* pmd: refresh meta

Homepage is now https://pmd.github.io/
Added licenses
Diffstat (limited to 'pkgs/development/tools/analysis')
-rw-r--r--pkgs/development/tools/analysis/pmd/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/tools/analysis/pmd/default.nix b/pkgs/development/tools/analysis/pmd/default.nix
index 187b2d7b03f9..89b0a33c0682 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.7.0";
+  version = "6.8.0";
 
   buildInputs = [ unzip ];
 
   src = fetchurl {
     url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip";
-    sha256 = "0bnbr8zq28dgvwka563g5lbya5jhmjrahnbwagcs4afpsrm7zj6c";
+    sha256 = "1vfkg2l3sl5ahhs89nvkg0z1ah1k67c44nwpvaymq73rb2bb8ibr";
   };
 
   installPhase = ''
@@ -16,10 +16,11 @@ stdenv.mkDerivation rec {
     cp -R * $out
   '';
 
-  meta = {
-    description = "Scans Java source code and looks for potential problems";
-    homepage = http://pmd.sourceforge.net/;
-    platforms = stdenv.lib.platforms.unix;
+  meta = with stdenv.lib; {
+    description = "An extensible cross-language static code analyzer.";
+    homepage = https://pmd.github.io/;
+    platforms = platforms.unix;
+    license = with licenses; [ bsdOriginal asl20 ];
   };
 }