summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <[email protected]>2025-02-13 08:39:35 +0000
committerSharlatan Hellseher <[email protected]>2025-02-13 09:41:43 +0000
commit201f5b813de85c86e37c39406e80ff09a5dc18ac (patch)
tree3cf3d7068b6952ffde2cb39f5e882d657c1e7004 /gnu
parent9015178fac9717667e3dcdbec786373ceb3db425 (diff)
gnu: nyancat: Sort alphabetically.
* gnu/packages/toys.scm (nyancat): Sort variable alphabetically. Change-Id: Id556be216f71f3a4bf0907513908c0e3b102f539
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/toys.scm70
1 files changed, 35 insertions, 35 deletions
diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index 1764bb3d77..f96e5cd9e9 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -310,6 +310,41 @@ regular @command{cat}, but it also adds terminal escape codes between
characters and lines resulting in a rainbow effect.")
(license license:wtfpl2)))
+(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 '(,(string-append "CC=" (cc-for-target)))
+ #: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)))
+
(define-public oneko
(package
(name "oneko")
@@ -515,41 +550,6 @@ flying and falling on the desktop, using windows as run paths.")
protocol. It shows fishes swimming over the desktop.")
(license (list license:expat 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 '(,(string-append "CC=" (cc-for-target)))
- #: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)))
-
(define-public xsnow
(package
(name "xsnow")