Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4ec41a9a9ea8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fbe08fe1dc4c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 10, 2018

  1. checkstyle: 8.13 -> 8.14 (#50133)

    * checkstyle: 8.13 -> 8.14
    
    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/checkstyle/versions
    
    * checkstyle: jre is a runtime deps
    r-ryantm authored and c0bw3b committed Nov 10, 2018
    Copy the full SHA
    fbe08fe View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/tools/analysis/checkstyle/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/tools/analysis/checkstyle/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{ stdenv, fetchurl, makeWrapper, jre }:

stdenv.mkDerivation rec {
version = "8.13";
version = "8.14";
name = "checkstyle-${version}";

src = fetchurl {
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
sha256 = "05w60yg5ghjdg36k4xd8m0yyfia9viyz51j053030b74bq65yvai";
sha256 = "11lpyjh0rbz8821q0gcrll5ichf8hrmlfy66ary5jjiyxc85z762";
};

nativeBuildInputs = [ makeWrapper jre ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];

unpackPhase = ":";