From 775ff10bf32420215b821865056550df5f75e9d7 Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Sat, 28 Oct 2023 12:40:35 +0200 Subject: [PATCH] add gradle package --- snam-gradle.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 snam-gradle.scm diff --git a/snam-gradle.scm b/snam-gradle.scm new file mode 100644 index 0000000..0cd713a --- /dev/null +++ b/snam-gradle.scm @@ -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