aboutsummaryrefslogtreecommitdiff
(use-modules (guix)
             (guix build-system gnu)
             (guix licenses))

(package
  (name "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, GNU world: An example GNU package")
  (description "Guess what GNU Hello prints!")
  (home-page "http://www.gnu.org/software/hello/")
  (license gpl3+))
e test. Marius Bakke 2020-03-16gnu: cook: Fix....This follows up on commit 5adc59e6fe8abb701df8fc97d56a6e60258318a4. * gnu/packages/cook.scm (cook)[home-page]: Better. Reported-by: Marius Bakke <mbakke@fastmail.com> Tobias Geerinckx-Rice 2020-03-16gnu: cook: Use archived home page....* gnu/packages/cook.scm (cook)[home-page]: Use a Web Archived copy. Tobias Geerinckx-Rice 2018-02-21gnu: cook: Update phase style....* gnu/packages/cook.scm (cook)[arguments]: Use MODIFY-PHASES syntax and end phase with #t. Tobias Geerinckx-Rice