mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add nyancat.
* gnu/packages/toys.scm (nyancat): New variable.
This commit is contained in:
parent
b6574660e3
commit
61daf2dbc9
1 changed files with 36 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2019 Jesse Gibbons <jgibbons2357+guix@gmail.com>
|
||||
;;; Copyright © 2019 Timotej Lazar <timotej.lazar@araneo.si>
|
||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -200,3 +201,38 @@ (define-public xsnow
|
|||
the desktop background. Additional customizable effects include wind, stars
|
||||
and various scenery elements.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public nyancat
|
||||
(package
|
||||
(name "nyancat")
|
||||
(version "1.5.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/klange/nyancat")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1mg8nm5xzcq1xr8cvx24ym2vmafkw53rijllwcdm9miiz0p5ky9k"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:make-flags '("CC=gcc")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure) ; no configure script
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin"))
|
||||
(man (string-append out "/share/man/man1")))
|
||||
(install-file "src/nyancat" bin)
|
||||
(install-file "nyancat.1" man))
|
||||
#t)))))
|
||||
(home-page "https://nyancat.dakko.us/")
|
||||
(synopsis "Nyan cat telnet server")
|
||||
(description
|
||||
"This is an animated, color, ANSI-text telnet server that renders a loop
|
||||
of the Nyan Cat / Poptart Cat animation.")
|
||||
(license license:ncsa)))
|
||||
|
|
Loading…
Reference in a new issue