diff options
-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 |