Unverified Commit cfdad6e9 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

checkstyle: 10.9.3 -> 10.10.0
parents 888e4610 75bd1dde
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, makeWrapper, jre }:

stdenv.mkDerivation rec {
  version = "10.9.3";
  version = "10.10.0";
  pname = "checkstyle";

  src = fetchurl {
    url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
    sha256 = "sha256-728SBtKcYTRA8ogNMX6XD3aFbz14GjyNvBVkjdiASPE=";
    sha256 = "sha256-L9ww8vVSkVQc/2utpMYiPEbbS9l2WzR9HEKmok9R7UI=";
  };

  nativeBuildInputs = [ makeWrapper ];