snamguix/snam-gradle.scm

28 lines
904 B
Scheme
Raw Normal View History

2023-10-28 12:40:35 +02:00
(define-module (snam-gradle)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (gnu packages compression)
2023-10-28 14:34:17 +02:00
#:use-module (gnu packages java)
2023-10-28 12:40:35 +02:00
#:use-module (guix build-system copy)
#:use-module (guix download))
2023-11-27 09:45:12 +01:00
(define-public snam-gradle
2023-10-28 12:40:35 +02:00
(package
2023-11-30 17:33:11 +01:00
(name "snam-gradle")
(version "8.4")
(source (origin
(method url-fetch)
(uri (string-append "https://downloads.gradle.org/distributions/gradle-" version "-bin.zip"))
(sha256
(base32 "1bkjxw7i0lm17pdyyvka4xpl6z0cdj0izagphync6839i2pg66iy"))))
(build-system copy-build-system)
(inputs (list `(,openjdk20 "jdk")))
(native-inputs (list unzip))
(synopsis "My Gradle, a java build system")
(description
"Gradle is the other build system and package manager for java programs")
(home-page "https://maven.apache.org/")
(license asl2.0)))
2023-10-28 12:40:35 +02:00
2023-11-30 17:33:11 +01:00
snam-gradle