Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.90 KB | None | 0 0
  1. (define-module (gnu packages hello)
  2.   #:use-module (guix packages)
  3.   #:use-module (guix download)
  4.   #:use-module (guix build-system gnu)
  5.   #:use-module (guix licenses)
  6.   #:use-module (gnu packages gawk))
  7.  
  8. (define-public hello
  9.   (package
  10.     (name "hello")
  11.     (version "2.10")
  12.     (source (origin
  13.               (method url-fetch)
  14.               (uri (string-append "mirror://gnu/hello/hello-" version
  15.                                   ".tar.gz"))
  16.               (sha256
  17.                (base32
  18.                 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
  19.     (build-system gnu-build-system)
  20.     (arguments '(#:configure-flags '("--enable-silent-rules")))
  21.     (inputs `(("gawk" ,gawk)))
  22.     (synopsis "Hello, GNU world: An example GNU package")
  23.     (description "Guess what GNU Hello prints!")
  24.     (home-page "http://www.gnu.org/software/hello/")
  25.     (license gpl3+)))
  26.  
  27. ("hello")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement