tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
checkstyle: 10.15.0 -> 10.16.0
R. Ryantm
2 years ago
fa51310d
f2c7ecb8
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
analysis
checkstyle
default.nix
+2
-2
pkgs/development/tools/analysis/checkstyle/default.nix
···
1
1
{ lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre }:
2
2
3
3
stdenvNoCC.mkDerivation rec {
4
4
-
version = "10.15.0";
4
4
+
version = "10.16.0";
5
5
pname = "checkstyle";
6
6
7
7
src = fetchurl {
8
8
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
9
9
-
sha256 = "sha256-9p9JXjkkCHGCdNIs/Kh/I/JdU6xOVuc8Ff1WZERxiM4=";
9
9
+
sha256 = "sha256-0Hmg7WnLAGy9YOipW7Oe6KQDxRiRqZ5eI3bKQGU0aQQ=";
10
10
};
11
11
12
12
nativeBuildInputs = [ makeBinaryWrapper ];