tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
checkstyle: 10.10.0 -> 10.11.0
R. Ryantm
2 years ago
041fd724
15f699fb
+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
{ lib, stdenv, fetchurl, makeWrapper, jre }:
2
3
stdenv.mkDerivation rec {
4
-
version = "10.10.0";
5
pname = "checkstyle";
6
7
src = fetchurl {
8
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
9
-
sha256 = "sha256-L9ww8vVSkVQc/2utpMYiPEbbS9l2WzR9HEKmok9R7UI=";
10
};
11
12
nativeBuildInputs = [ makeWrapper ];
···
1
{ lib, stdenv, fetchurl, makeWrapper, jre }:
2
3
stdenv.mkDerivation rec {
4
+
version = "10.11.0";
5
pname = "checkstyle";
6
7
src = fetchurl {
8
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
9
+
sha256 = "sha256-Fw8sG3iAnFXbdzGgbDJEoGGGdd+dSxCrS4KTLunEyjA=";
10
};
11
12
nativeBuildInputs = [ makeWrapper ];