From ffee3a36a71101fba97b33d40d3103f13ca7040c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 13 Feb 2025 08:45:24 +0000 Subject: [PATCH] gnu: xpenguins: Sort alphabetically. * gnu/packages/toys.scm (xpenguins): Sort variable alphabetically. Change-Id: I5015825681d5ebd55ecc9cf6f7d5d477619a7bfd --- gnu/packages/toys.scm | 68 +++++++++++++++++++++---------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm index f96e5cd9e95..3b073df98b1 100644 --- a/gnu/packages/toys.scm +++ b/gnu/packages/toys.scm @@ -479,40 +479,6 @@ typing @command{sl} instead of @command{ls}.") (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) -(define-public xpenguins - (package - (name "xpenguins") - (version "3.2.1") - (source - (origin - (method url-fetch) - (uri (string-append - "https://ratrabbit.nl/downloads/xpenguins/xpenguins-" - version ".tar.gz")) - (sha256 - (base32 "03qwc7gf21d2ixkrxxwwgayj6f5fv1kg4b7ggx90j5269il63adm")))) - (build-system gnu-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (add-before 'configure 'fix-install-path - (lambda _ - ;; Install program to bin/ instead of games/. - (substitute* "src/Makefile.in" - (("(gamesdir = \\$\\(exec_prefix\\)/)games" _ prefix) - (string-append prefix "bin")))))))) - (inputs - (list gtk+ libx11 libxml2 libxpm libxt)) - (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+))) - (define-public xfishtank (package (name "xfishtank") @@ -550,6 +516,40 @@ 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 xpenguins + (package + (name "xpenguins") + (version "3.2.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://ratrabbit.nl/downloads/xpenguins/xpenguins-" + version ".tar.gz")) + (sha256 + (base32 "03qwc7gf21d2ixkrxxwwgayj6f5fv1kg4b7ggx90j5269il63adm")))) + (build-system gnu-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'configure 'fix-install-path + (lambda _ + ;; Install program to bin/ instead of games/. + (substitute* "src/Makefile.in" + (("(gamesdir = \\$\\(exec_prefix\\)/)games" _ prefix) + (string-append prefix "bin")))))))) + (inputs + (list gtk+ libx11 libxml2 libxpm libxt)) + (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+))) + (define-public xsnow (package (name "xsnow")