diff --git a/README.md b/README.md index 5a0a544..8576321 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,10 @@ Maven : snam-maven The standard maven definition is compiled with an old java version 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. diff --git a/my-hello.scm b/my-hello.scm deleted file mode 100644 index 4a47c6c..0000000 --- a/my-hello.scm +++ /dev/null @@ -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