mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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:
parent
b6d5930c24
commit
e1c5b47935
1 changed files with 7 additions and 6 deletions
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pmd-${version}";
|
name = "pmd-${version}";
|
||||||
version = "6.7.0";
|
version = "6.8.0";
|
||||||
|
|
||||||
buildInputs = [ unzip ];
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip";
|
url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip";
|
||||||
sha256 = "0bnbr8zq28dgvwka563g5lbya5jhmjrahnbwagcs4afpsrm7zj6c";
|
sha256 = "1vfkg2l3sl5ahhs89nvkg0z1ah1k67c44nwpvaymq73rb2bb8ibr";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -16,10 +16,11 @@ stdenv.mkDerivation rec {
|
||||||
cp -R * $out
|
cp -R * $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Scans Java source code and looks for potential problems";
|
description = "An extensible cross-language static code analyzer.";
|
||||||
homepage = http://pmd.sourceforge.net/;
|
homepage = https://pmd.github.io/;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = with licenses; [ bsdOriginal asl20 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue