add gradle package
This commit is contained in:
parent
26b1e196e4
commit
775ff10bf3
1 changed files with 25 additions and 0 deletions
25
snam-gradle.scm
Normal file
25
snam-gradle.scm
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
(define-module (snam-gradle)
|
||||||
|
#:use-module (guix licenses)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module (guix build-system copy)
|
||||||
|
#:use-module (guix download))
|
||||||
|
|
||||||
|
(define-public snam-maven
|
||||||
|
(package
|
||||||
|
(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)
|
||||||
|
(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)))
|
||||||
|
|
||||||
|
snam-maven
|
Loading…
Reference in a new issue