update readme

This commit is contained in:
Peter Tillemans 2023-10-28 13:04:04 +02:00
parent 775ff10bf3
commit 160764fb37
2 changed files with 7 additions and 27 deletions

View file

@ -9,3 +9,10 @@ Maven : snam-maven
The standard maven definition is compiled with an old java version The standard maven definition is compiled with an old java version
and no longer works with recent openjdk versions. and no longer works with recent openjdk versions.
Gradle : snam-gradle
--------------------
The standard gradle definition is compiled with an old java version
and no longer works with recent openjdk versions.

View file

@ -1,27 +0,0 @@
(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