Skip to content

Commit

Permalink
pin gradle to 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
siddarthkay committed Jan 14, 2024
1 parent 565561b commit d2e0d86
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nix/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,14 @@ in {
};

# Package version adjustments
gradle = super.gradle_8;
gradle = super.gradle.overrideAttrs (oldAttrs: rec {
version = "8.1";
src = super.fetchurl {
url = "https://services.gradle.org/distributions/gradle-${version}-bin.zip";
sha256 = "sha256-pixfmVhd2eH5Xat7lBWg5pj6ndHmw4U3+qgawHj00j4=";
};
});

nodejs = super.nodejs-18_x;
ruby = super.ruby_3_1;
yarn = super.yarn.override { nodejs = super.nodejs-18_x; };
Expand Down

0 comments on commit d2e0d86

Please sign in to comment.