all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#57392] [PATCH 0/2] Add boohu.
@ 2022-08-24 21:55 Cairn via Guix-patches via
  2022-08-24 21:56 ` [bug#57392] [PATCH 1/2] gnu: " Cairn via Guix-patches via
  2022-08-24 21:56 ` [bug#57392] [PATCH 2/2] gnu: Add boohu-tk Cairn via Guix-patches via
  0 siblings, 2 replies; 3+ messages in thread
From: Cairn via Guix-patches via @ 2022-08-24 21:55 UTC (permalink / raw)
  To: 57392; +Cc: Cairn

Boohu's homepage: https://download.tuxfamily.org/boohu/index.html

This is both the normal terminal version and a graphical version that uses Tcl/Tk.

Harmonist, another game by the same developer, used to use Tcl/Tk like Boohu does here. It switched to SDL2, and `harmonist-tk` was removed from Guix[1]. I just submitted a patchset for the SDL2 version of Harmonist[2], and I'll gladly do the same if Boohu gets SDL2 support backported. Until then, the Tcl/Tk version is perfectly stable, and I wouldn't consider it out-of-date.

[1]: https://git.savannah.gnu.org/cgit/guix.git/commit/?id=1a6574
[2]: https://issues.guix.gnu.org/57390

Cairn (2):
  gnu: Add boohu.
  gnu: Add boohu-tk.

 gnu/packages/games.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

-- 
2.37.2






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#57392] [PATCH 1/2] gnu: Add boohu.
  2022-08-24 21:55 [bug#57392] [PATCH 0/2] Add boohu Cairn via Guix-patches via
@ 2022-08-24 21:56 ` Cairn via Guix-patches via
  2022-08-24 21:56 ` [bug#57392] [PATCH 2/2] gnu: Add boohu-tk Cairn via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Cairn via Guix-patches via @ 2022-08-24 21:56 UTC (permalink / raw)
  To: 57392; +Cc: Cairn

* gnu/packages/games.scm (boohu): New variable.
---
 gnu/packages/games.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index a3278b8918..ac9190d1a7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9505,6 +9505,36 @@ (define-public harmonist
 on items and player adaptability for character progression.")
     (license license:isc)))
 
+(define-public boohu
+  (package
+    (name "boohu")
+    (version "0.13.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://git.tuxfamily.org/boohu/boohu.git")
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0g8sziji2bpqfqlmxw51zgnx048k245149cpn29cadpmw75viz44"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "git.tuxfamily.org/boohu/boohu"))
+    (inputs (list go-github-com-gdamore-tcell-v2
+                  go-github.com-nsf-termbox-go
+                  go-github-com-anaseto-gruid
+                  go-github-com-anaseto-gruid-tcell))
+    (home-page "https://download.tuxfamily.org/boohu/index.html")
+    (synopsis "Tactical positioning coffee-break roguelike game")
+    (description "Break Out Of Hareka's Underground (Boohu) is a turn-based
+coffee-break roguelike game with a heavy focus on tactical positioning
+mechanisms.  This focus strongly influenced its weapon attack patterns,
+consumables and terrain features.  Aiming for a replayable streamlined
+experience, the game avoids manual inventory management and complex character
+building, relying on items and player adaptability for character progression.")
+    (license license:isc)))
+
 (define-public drascula
   (package
     (name "drascula")
-- 
2.37.2






^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#57392] [PATCH 2/2] gnu: Add boohu-tk.
  2022-08-24 21:55 [bug#57392] [PATCH 0/2] Add boohu Cairn via Guix-patches via
  2022-08-24 21:56 ` [bug#57392] [PATCH 1/2] gnu: " Cairn via Guix-patches via
@ 2022-08-24 21:56 ` Cairn via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Cairn via Guix-patches via @ 2022-08-24 21:56 UTC (permalink / raw)
  To: 57392; +Cc: Cairn

* gnu/packages/games.scm (boohu-tk): New variable.
---
 gnu/packages/games.scm | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index ac9190d1a7..b201c6a074 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9535,6 +9535,19 @@ (define-public boohu
 building, relying on items and player adaptability for character progression.")
     (license license:isc)))
 
+(define-public boohu-tk
+  (package
+    (inherit boohu)
+    (name "boohu-tk")
+    (inputs
+     (modify-inputs (package-inputs boohu)
+       (append go-github.com-nsf-gothic)))
+    (arguments
+    (substitute-keyword-arguments (package-arguments boohu)
+      ((#:build-flags flags ''())
+       `(append '("--tags" "tk")
+                ,flags))))))
+
 (define-public drascula
   (package
     (name "drascula")
-- 
2.37.2






^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-24 21:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-24 21:55 [bug#57392] [PATCH 0/2] Add boohu Cairn via Guix-patches via
2022-08-24 21:56 ` [bug#57392] [PATCH 1/2] gnu: " Cairn via Guix-patches via
2022-08-24 21:56 ` [bug#57392] [PATCH 2/2] gnu: Add boohu-tk Cairn via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.