package-hello.scm 615 B

1234567891011121314151617181920
  1. (use-modules (guix)
  2. (guix build-system gnu)
  3. (guix licenses))
  4. (package
  5. (name "hello")
  6. (version "2.10")
  7. (source (origin
  8. (method url-fetch)
  9. (uri (string-append "mirror://gnu/hello/hello-" version
  10. ".tar.gz"))
  11. (sha256
  12. (base32
  13. "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
  14. (build-system gnu-build-system)
  15. (synopsis "Hello, GNU world: An example GNU package")
  16. (description "Guess what GNU Hello prints!")
  17. (home-page "http://www.gnu.org/software/hello/")
  18. (license gpl3+))