Compare commits

..

2 commits

Author SHA1 Message Date
Peter Tillemans
775ff10bf3 add gradle package 2023-10-28 12:40:35 +02:00
Peter Tillemans
26b1e196e4 add gradle to channel 2023-10-28 12:38:46 +02:00
2 changed files with 26 additions and 0 deletions

25
snam-gradle.scm Normal file
View 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

View file

@ -1,6 +1,7 @@
(define-module (snam-maven)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix packages compression unzip)
#:use-module (guix build-system copy)
#:use-module (guix download))