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

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

checkstyle: 10.5.0 -> 10.6.0
parents 21fb1cac f77ade48
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, makeWrapper, jre }:

stdenv.mkDerivation rec {
  version = "10.5.0";
  version = "10.6.0";
  pname = "checkstyle";

  src = fetchurl {
    url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
    sha256 = "sha256-GbPVA/Z9R0P9prJTFJUCTV9pq9/Cbl6UOjwhAlhe9BA=";
    sha256 = "sha256-ghGrRu7a9OUVti6P4QRrGFSmQqX8XCfn7aBHR4Q7RCI=";
  };

  nativeBuildInputs = [ makeWrapper ];