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: 99997f1bc29f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fdb5aea5bd2c
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 1, 2019

  1. checkstyle: 8.20 -> 8.21

    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
    r-ryantm committed Jun 1, 2019
    Copy the full SHA
    02fff27 View commit details
  2. Copy the full SHA
    49f164b View commit details
  3. Merge pull request #62373 from r-ryantm/auto-update/checkstyle

    checkstyle: 8.20 -> 8.21
    marsam authored Jun 1, 2019
    Copy the full SHA
    fdb5aea View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/analysis/checkstyle/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/analysis/checkstyle/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre }:

stdenv.mkDerivation rec {
version = "8.20";
version = "8.21";
name = "checkstyle-${version}";

src = fetchurl {
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
sha256 = "1vsszdmdpyjdwlc9qqw4m8s6rw3pkdrczrmlmydwqmzvzr559nyp";
sha256 = "1jd6kbfmvgr3mr8kjhhr1fj1i3j36ysnfi14g5027ngwbq7klm7d";
};

nativeBuildInputs = [ makeWrapper ];
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = http://checkstyle.sourceforge.net/;
license = licenses.lgpl21;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
platforms = jre.meta.platforms;
};
}