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: e3b87b04b798
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 92e5745383a8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 1, 2019

  1. gradle: 5.0 -> 5.3.1 (#58528)

    groodt authored and xeji committed Apr 1, 2019
    Copy the full SHA
    92e5745 View commit details
Showing with 11 additions and 7 deletions.
  1. +11 −7 pkgs/development/tools/build-managers/gradle/default.nix
18 changes: 11 additions & 7 deletions pkgs/development/tools/build-managers/gradle/default.nix
Original file line number Diff line number Diff line change
@@ -52,32 +52,32 @@ rec {
};

gradle_latest = gradleGen rec {
name = "gradle-5.0";
nativeVersion = "0.14";
name = "gradle-5.3.1";
nativeVersion = "0.17";

src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
sha256 = "19krxq9pid9dg6bhdbhhg7ykm5kcx7lv7cr58rj67g0h6jgsqmv1";
sha256 = "0dkl6f17zl9pc6y2xm8xqz23x53fck4p2648vpq8572f0mxa2n8w";
};
};

gradle_4_10 = gradleGen rec {
name = "gradle-4.10.2";
name = "gradle-4.10.3";
nativeVersion = "0.14";

src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
sha256 = "0a9s2iisivgaapsz4vq1l8fa2w0wnlq0cj67yv5a0rybnahnv75l";
sha256 = "0vhqxnk0yj3q9jam5w4kpia70i4h0q4pjxxqwynh3qml0vrcn9l6";
};
};

gradle_3_5 = gradleGen rec {
name = "gradle-3.5";
name = "gradle-3.5.1";
nativeVersion = "0.14";

src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
sha256 = "046i268zkg89ps7c1sq8yx9lbn9kighh4gcskxmzf3qriiwm0x0b";
sha256 = "1y7fbhrdriclbs5ksxahi0aafsz760lalwyz8r4llysc5pskbkld";
};
};

@@ -91,6 +91,10 @@ rec {
};
};

# Nix pkgs that depend on this old version:
# pkgs/tools/security/jd-gui/default.nix
# pkgs/servers/mxisd/default.nix
# If these packages are updated, this old version can probably be removed
gradle_2_5 = gradleGen rec {
name = "gradle-2.5";
nativeVersion = "0.10";