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
This commit is contained in:
R. RyanTM 2018-10-11 04:20:01 -07:00 committed by Renaud
parent b6d5930c24
commit e1c5b47935

View File

@ -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 ];
};
}