0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

checkstyle: 8.13 -> 8.14 (#50133)

* checkstyle: 8.13 -> 8.14

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/checkstyle/versions

* checkstyle: jre is a runtime deps
This commit is contained in:
R. RyanTM 2018-11-10 06:42:24 -08:00 committed by Renaud
parent 4ec41a9a9e
commit fbe08fe1dc

View file

@ -1,15 +1,16 @@
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
version = "8.13";
version = "8.14";
name = "checkstyle-${version}";
src = fetchurl {
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
sha256 = "05w60yg5ghjdg36k4xd8m0yyfia9viyz51j053030b74bq65yvai";
sha256 = "11lpyjh0rbz8821q0gcrll5ichf8hrmlfy66ary5jjiyxc85z762";
};
nativeBuildInputs = [ makeWrapper jre ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
unpackPhase = ":";