fix java version in gradle
This commit is contained in:
parent
b6019a41b2
commit
5c40a79fb3
1 changed files with 16 additions and 15 deletions
|
@ -8,19 +8,20 @@
|
||||||
|
|
||||||
(define-public snam-gradle
|
(define-public snam-gradle
|
||||||
(package
|
(package
|
||||||
(name "snam-gradle")
|
(name "snam-gradle")
|
||||||
(version "8.4")
|
(version "8.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://downloads.gradle.org/distributions/gradle-" version "-bin.zip"))
|
(uri (string-append "https://downloads.gradle.org/distributions/gradle-" version "-bin.zip"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1bkjxw7i0lm17pdyyvka4xpl6z0cdj0izagphync6839i2pg66iy"))))
|
(base32 "1bkjxw7i0lm17pdyyvka4xpl6z0cdj0izagphync6839i2pg66iy"))))
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
(inputs (list `(,openjdk@20 "jdk")))
|
(inputs (list `(,openjdk20 "jdk")))
|
||||||
(native-inputs (list unzip))
|
(native-inputs (list unzip))
|
||||||
(synopsis "My Gradle, a java build system")
|
(synopsis "My Gradle, a java build system")
|
||||||
(description
|
(description
|
||||||
"Gradle is the other build system and package manager for java programs")
|
"Gradle is the other build system and package manager for java programs")
|
||||||
(home-page "https://maven.apache.org/")
|
(home-page "https://maven.apache.org/")
|
||||||
(license asl2.0)))
|
(license asl2.0)))
|
||||||
|
|
||||||
|
snam-gradle
|
||||||
|
|
Loading…
Reference in a new issue