iyzsong pushed a commit to branch master
in repository guix.

commit 31f261dedaf0c554f704942c009a763a9d021e25
Author: 宋文武 <[email protected]>
AuthorDate: Thu Feb 20 14:53:22 2025 +0800

    gnu: Add xmahjongg.
    
    * gnu/packages/games.scm (xmahjongg): New variable.
    
    Change-Id: I88440563216e5927152bebd381dd3efa065fc251
    Reviewed-by: Maxim Cournoyer <[email protected]>
---
 gnu/packages/games.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index eaf3fcd908..546c513de0 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -12500,6 +12500,26 @@ on the pitch of the voice and the rhythm of singing.")
     (home-page "https://usdx.eu/";)
     (license license:gpl2+)))
 
+(define-public xmahjongg
+  (package
+    (name "xmahjongg")
+    (version "3.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://www.lcdf.org/xmahjongg/xmahjongg-";
+                           version ".tar.gz"))
+       (sha256
+        (base32 "1kzz8y34q7wibcrmfb3p9rrz88qriz4slxpf1yrrfny23il66g94"))))
+    (build-system gnu-build-system)
+    (inputs (list libx11))
+    (home-page "http://www.lcdf.org/xmahjongg/";)
+    (synopsis "Solitaire Mah Jongg game")
+    (description
+     "Xmahjongg is a simple solitaire game.  The object is to remove all Mah
+Jongg tiles from the playing field by taking one matching pair at a time.")
+    (license license:gpl2+)))
+
 (define-public steam-devices-udev-rules
   ;; Last release from 2019-04-10
   (let ((commit "13443480a64fe8f10676606bd57da6de89f8ccb1")

Reply via email to