gnu: hello: Upgrade to 2.9.
* gnu/packages/base.scm (hello): Upgrade to 2.9. Remove 'arguments' and 'inputs' fields, which were never needed.master
parent
1635658d69
commit
c3af0bf243
|
@ -49,19 +49,14 @@
|
||||||
(define-public hello
|
(define-public hello
|
||||||
(package
|
(package
|
||||||
(name "hello")
|
(name "hello")
|
||||||
(version "2.8")
|
(version "2.9")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/hello/hello-" version
|
(uri (string-append "mirror://gnu/hello/hello-" version
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))))
|
(base32 "19qy37gkasc4csb1d3bdiz9snn8mir2p3aj0jgzmfv0r2hi7mfzc"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:configure-flags
|
|
||||||
`("--disable-dependency-tracking"
|
|
||||||
,(string-append "--with-gawk=" ; for illustration purposes
|
|
||||||
(assoc-ref %build-inputs "gawk")))))
|
|
||||||
(inputs `(("gawk" ,gawk)))
|
|
||||||
(synopsis "Hello, GNU world: An example GNU package")
|
(synopsis "Hello, GNU world: An example GNU package")
|
||||||
(description
|
(description
|
||||||
"GNU Hello prints the message \"Hello, world!\" and then exits. It
|
"GNU Hello prints the message \"Hello, world!\" and then exits. It
|
||||||
|
|
Reference in New Issue