gnu: adms: Update to 2.3.7.
[jackhill/guix/guix.git] / doc / package-hello.scm
CommitLineData
0d279400
DT
1(use-modules (guix)
2 (guix build-system gnu)
3 (guix licenses))
4
5(package
6 (name "hello")
17d8e33f 7 (version "2.10")
0d279400
DT
8 (source (origin
9 (method url-fetch)
10 (uri (string-append "mirror://gnu/hello/hello-" version
11 ".tar.gz"))
12 (sha256
17d8e33f
ML
13 (base32
14 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
0d279400
DT
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+))