gnu: Add cowsay.
* gnu/packages/games.scm (cowsay): New variable.
This commit is contained in:
parent
56ab0f0c6d
commit
620b0468e9
1 changed files with 38 additions and 0 deletions
|
@ -242,6 +242,44 @@ (define-public cataclysm-dda
|
||||||
the others like yourself, that want what you have.")
|
the others like yourself, that want what you have.")
|
||||||
(license license:cc-by-sa3.0)))
|
(license license:cc-by-sa3.0)))
|
||||||
|
|
||||||
|
(define-public cowsay
|
||||||
|
(package
|
||||||
|
(name "cowsay")
|
||||||
|
(version "3.03")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://web.archive.org/web/20071026043648/"
|
||||||
|
"http://www.nog.net:80/~tony/warez/"
|
||||||
|
"cowsay-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1bxj802na2si2bk5zh7n0b7c33mg8a5n2wnvh0vihl9bmjkp51hb"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(delete 'install)
|
||||||
|
(replace 'build
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(zero? (system* "sh" "install.sh"
|
||||||
|
(assoc-ref outputs "out")))))
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(zero? (system* (string-append (assoc-ref outputs "out")
|
||||||
|
"/bin/cowsay")
|
||||||
|
"We're done!")))))))
|
||||||
|
(inputs
|
||||||
|
`(("perl" ,perl)))
|
||||||
|
(home-page (string-append "https://web.archive.org/web/20071026043648/"
|
||||||
|
"http://www.nog.net:80/~tony/warez/"))
|
||||||
|
(synopsis "Speaking cow text filter")
|
||||||
|
(description "Cowsay is basically a text filter. Send some text into it,
|
||||||
|
and you get a cow saying your text. If you think a talking cow isn't enough,
|
||||||
|
cows can think too. All you have to do is run @code{cowthink}.")
|
||||||
|
;; Any version of the GPL.
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public freedoom
|
(define-public freedoom
|
||||||
(package
|
(package
|
||||||
(name "freedoom")
|
(name "freedoom")
|
||||||
|
|
Loading…
Reference in a new issue