doc: Fix minor typo in Programming Interface.
[jackhill/guix/guix.git] / doc / package-hello.scm
1 (use-modules (guix)
2 (guix build-system gnu)
3 (guix licenses))
4
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+))