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

Commits on Nov 27, 2018

  1. gradle: Add 5.0

    NeQuissimus committed Nov 27, 2018
    Copy the full SHA
    dc1a0df View commit details
Showing with 11 additions and 0 deletions.
  1. +10 −0 pkgs/development/tools/build-managers/gradle/default.nix
  2. +1 −0 pkgs/top-level/all-packages.nix
10 changes: 10 additions & 0 deletions pkgs/development/tools/build-managers/gradle/default.nix
Original file line number Diff line number Diff line change
@@ -52,6 +52,16 @@ rec {
};

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

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

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

1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -8568,6 +8568,7 @@ with pkgs;
gradle_2_14 = self.gradleGen.gradle_2_14;
gradle_2_5 = self.gradleGen.gradle_2_5;
gradle_3_5 = self.gradleGen.gradle_3_5;
gradle_4_10 = self.gradleGen.gradle_4_10;

gperf = callPackage ../development/tools/misc/gperf { };
# 3.1 changed some parameters from int to size_t, leading to mismatches.