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