guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

18/78: gnu: Add xpenguins.


From: guix-commits
Subject: 18/78: gnu: Add xpenguins.
Date: Fri, 23 Feb 2024 03:12:00 -0500 (EST)

sharlatan pushed a commit to branch go-team
in repository guix.

commit f18bc3f0e054b16ef73e5bd027894bd6735bf488
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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]