[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/53: gnu: Add xpenguins.
From: |
guix-commits |
Subject: |
01/53: gnu: Add xpenguins. |
Date: |
Thu, 22 Feb 2024 10:18:51 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit 7fb77a5b7235611f0d832600064b55104116603e
Author: Sarthak Shah <shahsarthakw@gmail.com>
AuthorDate: Sat Feb 17 17:12:18 2024 +0000
gnu: Add xpenguins.
* gnu/packages/toys.scm (xpenguins): New variable.
Reviewed-by: Greg Hogan <code@greghogan.com>
Reviewed-by: Steve George <steve@futurile.net>
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: I6262092da4d51abaca1d6f01ec2e3f27baca7a01
---
gnu/packages/toys.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index c058e70dac..5dcbfc4d23 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Leo Famulari <leo@famulari.name>
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2023 Sarthak Shah <shahsarthakw@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -399,6 +400,40 @@ the desktop background. Additional customizable effects
include wind, stars
and various scenery elements.")
(license 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 nyancat
(package
(name "nyancat")
- branch master updated (58233e6c21 -> 59ef52ccb2), guix-commits, 2024/02/22
- 03/53: gnu: virglrenderer: Update to 1.0.1., guix-commits, 2024/02/22
- 01/53: gnu: Add xpenguins.,
guix-commits <=
- 10/53: gnu: emacs-cider: Update to 1.13.1., guix-commits, 2024/02/22
- 05/53: gnu: Add tagainijisho., guix-commits, 2024/02/22
- 15/53: gnu: emacs-debbugs: Update to 0.40., guix-commits, 2024/02/22
- 06/53: gnu: Add libsixel., guix-commits, 2024/02/22
- 14/53: gnu: emacs-pabbrev: Update to 4.3.0., guix-commits, 2024/02/22
- 21/53: gnu: emacs-corfu: Update to 1.2., guix-commits, 2024/02/22
- 25/53: gnu: emacs-edit-indirect: Update to 0.1.13., guix-commits, 2024/02/22
- 13/53: gnu: emacs-mmm-mode: Update to 0.5.11., guix-commits, 2024/02/22
- 23/53: gnu: emacs-dtrt-indent: Update to 1.17., guix-commits, 2024/02/22
- 19/53: gnu: emacs-vertico-posframe: Update to 0.7.7., guix-commits, 2024/02/22