about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2022-11-03 13:56:17 +0100
committerGitHub <noreply@github.com>2022-11-03 13:56:17 +0100
commitc1bebff09f6ca77642253891e5e0538a332dc945 (patch)
tree0ee39ab975c3e1712ccf02b5eb967a7de4ba08a1 /pkgs/development
parentfec7683a0d3529746a811c1ca94dd1a0d5a8eed5 (diff)
parent221c5f303714e6d40c40b092a78a3a677fe07886 (diff)
Merge pull request #198776 from r-ryantm/auto-update/checkstyle
checkstyle: 10.3.4 -> 10.4
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/analysis/checkstyle/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix
index 17f7ec81be3a2..4575b06c572b5 100644
--- a/pkgs/development/tools/analysis/checkstyle/default.nix
+++ b/pkgs/development/tools/analysis/checkstyle/default.nix
@@ -1,12 +1,12 @@
 { lib, stdenv, fetchurl, makeWrapper, jre }:
 
 stdenv.mkDerivation rec {
-  version = "10.3.4";
+  version = "10.4";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "sha256-HOKEbBU2jo7AJmSMVG2j1yM4VfcdN+Tl/MiazxtKYHw=";
+    sha256 = "sha256-x/13rqb3NOP4ML2HoddkmRrEwBAsG97Z2iLLoJCu2PQ=";
   };
 
   nativeBuildInputs = [ makeWrapper ];