summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntero Mejr <mail@antr.me>2024-10-11 23:45:28 +0000
committerChristopher Baines <mail@cbaines.net>2025-05-16 07:06:50 +0100
commitd42a7e4b0a5783532cdfb239e0846fe3b61b227a (patch)
treee859f6cd8e798f8989ce80166cca3a597b6af08c
parentefac01f19b65d7d77a98bbfd57fe2073fb13064a (diff)
gnu: Add netpanzer.
* gnu/packages/games.scm (netpanzer): New variable. Change-Id: I989834b3b20c9848f53f1f17bb97bd9c49fc86e8 Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r--gnu/packages/games.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 62edc1bebf..c034481e48 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -2686,6 +2686,38 @@ role, and your gender.")
(license:fsdg-compatible
"https://nethack.org/common/license.html"))))
+(define-public netpanzer
+ (package
+ (name "netpanzer")
+ (version "0.9.0-RC-7") ;0.8.7 was released 8 years ago
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/netpanzer/netpanzer")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1bc29cxjragbhgsg89sliyiqw289nd37wb1f9qarknir73ijnfac"))))
+ (build-system meson-build-system)
+ (arguments
+ (list #:tests? #f)) ;2/2 (trivial) tests fail, need filesystem access
+ (native-inputs (list pkg-config))
+ (inputs (list freetype
+ lua
+ physfs
+ sdl2
+ sdl2-mixer
+ sdl2-ttf))
+ (home-page "https://github.com/netpanzer/netpanzer")
+ (synopsis "Online tactical warfare game")
+ (description
+ "NetPanzer is an online multiplayer tactical warfare game. It is based
+on quick tactical action and unit management in real-time. Battles progress
+constantly as destroyed players respawn with a set of new units. Players can
+join or leave multiplayer games at any time.")
+ (license license:gpl2+)))
+
(define-public pipewalker
(package
(name "pipewalker")