pmd: 6.41.0 -> 6.42.0

* pmd: 6.41.0 -> 6.42.0 (#159755)

* pmd: remove LGPL-3 from licenses
Removed upstream in commit id c8d6e7f00b0d8f18df910441d519fda2d23b00f4

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>

authored by R. RyanTM Renaud and committed by GitHub c6873609 a9819728

+3 -3
+3 -3
pkgs/development/tools/analysis/pmd/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pmd"; 5 - version = "6.41.0"; 5 + version = "6.42.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip"; 9 - sha256 = "sha256-kXyUukqLFIdaBpO+oimyrzmGm6bNwoQaRDIoMtZq45k="; 9 + sha256 = "sha256-rVqHMhiuFLVTz/J9TGnA/42m9GaGORsf+CrUUqsdUfs="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ unzip makeWrapper ]; ··· 24 24 homepage = "https://pmd.github.io/"; 25 25 changelog = "https://pmd.github.io/pmd-${version}/pmd_release_notes.html"; 26 26 platforms = platforms.unix; 27 - license = with licenses; [ bsdOriginal asl20 lgpl3Plus ]; 27 + license = with licenses; [ bsdOriginal asl20 ]; 28 28 }; 29 29 }