atlauncher: pin to Gradle 8

This commit is contained in:
Tomodachi94 2024-11-26 02:46:39 +00:00
parent 33c8fa3a3c
commit d2b828fbeb
2 changed files with 10 additions and 4 deletions

View File

@ -2,10 +2,13 @@
, stdenv
, fetchgit
, jdk_headless
, gradle
, gradle_8
, makeWrapper
}:
let
# "Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0."
gradle = gradle_8;
in
stdenv.mkDerivation rec {
pname = "apksigner";
version = "34.0.5-unstable-2024-03-06";

View File

@ -1,6 +1,6 @@
{
fetchFromGitHub,
gradle,
gradle_8,
jre,
lib,
makeWrapper,
@ -18,7 +18,10 @@
udev,
xorg,
}:
let
# "Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0."
gradle = gradle_8;
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "atlauncher";
version = "3.4.38.0";