initial commit

This commit is contained in:
Peter Tillemans 2023-10-16 15:42:34 +02:00
commit cec97e9399
2 changed files with 52 additions and 0 deletions

27
my-hello.scm Normal file
View file

@ -0,0 +1,27 @@
(define-module (my-hello)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix build-system gnu)
#:use-module (guix download))
(define-public my-hello
(package
(name "my-hello")
(version "2.10")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/hello/hello-" version
".tar.gz"))
(sha256
(base32
"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
(build-system gnu-build-system)
(synopsis "Hello, Guix world: An example custom Guix package")
(description
"GNU Hello prints the message \"Hello, world!\" and then exits. It
serves as an example of standard GNU coding practices. As such, it supports
command-line arguments, multiple languages, and so on.")
(home-page "https://www.gnu.org/software/hello/")
(license gpl3+)))
my-hello

25
snam-maven.scm Normal file
View file

@ -0,0 +1,25 @@
(define-module (snam-maven)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix build-system copy)
#:use-module (guix download))
(define-public snam-maven
(package
(name "snam-maven")
(version "3.9.5")
(source (origin
(method url-fetch)
(uri (string-append "https://dlcdn.apache.org/maven/maven-3/" version "/binaries/apache-maven-" version
"-bin.tar.gz"))
(sha256
(base32
"0z7ghjfi3w7r9ax56dzg714zq5g0cnbkkxj25qgfh7q40nqp5ljz"))))
(build-system copy-build-system)
(synopsis "My Maven, a java build system.")
(description
"Maven is a standard build system and package manager for java programs")
(home-page "https://maven.apache.org/")
(license asl2.0)))
snam-maven