Merge pull request #62373 from r-ryantm/auto-update/checkstyle

checkstyle: 8.20 -> 8.21
This commit is contained in:
Mario Rodas 2019-06-01 05:37:00 -05:00 committed by GitHub
commit fdb5aea5bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
version = "8.20";
version = "8.21";
name = "checkstyle-${version}";
src = fetchurl {
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
sha256 = "1vsszdmdpyjdwlc9qqw4m8s6rw3pkdrczrmlmydwqmzvzr559nyp";
sha256 = "1jd6kbfmvgr3mr8kjhhr1fj1i3j36ysnfi14g5027ngwbq7klm7d";
};
nativeBuildInputs = [ makeWrapper ];
@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = http://checkstyle.sourceforge.net/;
license = licenses.lgpl21;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
platforms = jre.meta.platforms;
};
}