diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-13 08:45:24 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-13 09:41:43 +0000 |
commit | ffee3a36a71101fba97b33d40d3103f13ca7040c (patch) | |
tree | 0e80f8cf68b90c2d6d3241147bf92e6ff1777b64 | |
parent | 201f5b813de85c86e37c39406e80ff09a5dc18ac (diff) | |
download | guix-ffee3a36a71101fba97b33d40d3103f13ca7040c.tar.gz guix-ffee3a36a71101fba97b33d40d3103f13ca7040c.zip |
gnu: xpenguins: Sort alphabetically.
* gnu/packages/toys.scm (xpenguins): Sort variable alphabetically.
Change-Id: I5015825681d5ebd55ecc9cf6f7d5d477619a7bfd
-rw-r--r-- | gnu/packages/toys.scm | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm index f96e5cd9e9..3b073df98b 100644 --- a/gnu/packages/toys.scm +++ b/gnu/packages/toys.scm @@ -479,18 +479,21 @@ typing @command{sl} instead of @command{ls}.") (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) -(define-public xpenguins +(define-public xfishtank (package - (name "xpenguins") + (name "xfishtank") (version "3.2.1") (source (origin (method url-fetch) (uri (string-append - "https://ratrabbit.nl/downloads/xpenguins/xpenguins-" - version ".tar.gz")) + "https://www.ratrabbit.nl/downloads/xfishtank/xfishtank-" + version "~pre1.tar.gz")) + ;; Version has ~pre1 in it. Guix store does not allow tilde in file + ;; names. Save it in the Store using a hyphen. + (file-name (string-append name "-" version "-pre1.tar.gz")) (sha256 - (base32 "03qwc7gf21d2ixkrxxwwgayj6f5fv1kg4b7ggx90j5269il63adm")))) + (base32 "16i9diawkmar6dhx5xn0mflr2h585gamab6137hvxzgaczx55lwp")))) (build-system gnu-build-system) (arguments (list @@ -507,27 +510,24 @@ typing @command{sl} instead of @command{ls}.") (native-inputs (list pkg-config)) (home-page - "https://www.ratrabbit.nl/ratrabbit/software/xpenguins/index.html") - (synopsis "Let penguins take over your desktop!") - (description "Xpenguins is a vintage application showing penguins running, -flying and falling on the desktop, using windows as run paths.") - (license license:gpl2+))) + "https://www.ratrabbit.nl/ratrabbit/software/xfishtank/index.html") + (synopsis "Let fish swim over your desktop!") + (description "Xfishtank is a vintage application that uses the X11 +protocol. It shows fishes swimming over the desktop.") + (license (list license:expat license:gpl3+)))) -(define-public xfishtank +(define-public xpenguins (package - (name "xfishtank") + (name "xpenguins") (version "3.2.1") (source (origin (method url-fetch) (uri (string-append - "https://www.ratrabbit.nl/downloads/xfishtank/xfishtank-" - version "~pre1.tar.gz")) - ;; Version has ~pre1 in it. Guix store does not allow tilde in file - ;; names. Save it in the Store using a hyphen. - (file-name (string-append name "-" version "-pre1.tar.gz")) + "https://ratrabbit.nl/downloads/xpenguins/xpenguins-" + version ".tar.gz")) (sha256 - (base32 "16i9diawkmar6dhx5xn0mflr2h585gamab6137hvxzgaczx55lwp")))) + (base32 "03qwc7gf21d2ixkrxxwwgayj6f5fv1kg4b7ggx90j5269il63adm")))) (build-system gnu-build-system) (arguments (list @@ -544,11 +544,11 @@ flying and falling on the desktop, using windows as run paths.") (native-inputs (list pkg-config)) (home-page - "https://www.ratrabbit.nl/ratrabbit/software/xfishtank/index.html") - (synopsis "Let fish swim over your desktop!") - (description "Xfishtank is a vintage application that uses the X11 -protocol. It shows fishes swimming over the desktop.") - (license (list license:expat license:gpl3+)))) + "https://www.ratrabbit.nl/ratrabbit/software/xpenguins/index.html") + (synopsis "Let penguins take over your desktop!") + (description "Xpenguins is a vintage application showing penguins running, +flying and falling on the desktop, using windows as run paths.") + (license license:gpl2+))) (define-public xsnow (package |