summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorbdunahu <bdunahu@operationnull.com>2026-05-13 00:37:46 -0400
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2026-07-24 09:07:08 +0200
commit210def8f4b10d0473df240a8a5b2e10ea43a4dee (patch)
treed7fb7f7a8ca6b9978332a4b678a31304a3a6d36d /gnu/packages
parent9bee977ea09497b0ae8ed4c695689941883b7941 (diff)
gnu: Add warzone2100-texpages.
* gnu/packages/games.scm (warzone2100-texpages): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/games.scm37
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index f47e84d2091..02c3618b3af 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -7169,6 +7169,43 @@ in-window at 640x480 resolution or fullscreen.")
7169 ;; released under Public Domain terms. 7169 ;; released under Public Domain terms.
7170 (license (list license:gpl2+ license:public-domain)))) 7170 (license (list license:gpl2+ license:public-domain))))
7171 7171
7172(define-public warzone2100-texpages
7173 ;; Commit pinned by warzone2100 v4.7.0; latest release is 7 years old.
7174 (let ((commit "009ec2f652a6230d8315cc3db4eadb5690f18fbd")
7175 (revision "0"))
7176 (package
7177 (name "warzone2100-texpages")
7178 (version (git-version "3.3.0" revision commit))
7179 (source
7180 (origin
7181 (method git-fetch)
7182 (uri (git-reference
7183 (url "https://github.com/Warzone2100/data-texpages")
7184 (commit commit)))
7185 (file-name (git-file-name name version))
7186 (sha256
7187 (base32
7188 "0n1cdsvjzy6y6dnxxy9hm18z5qddnhhp6jd4xz32zms5qj1asapw"))))
7189 (build-system copy-build-system)
7190 (arguments
7191 (list #:install-plan #~'(("." "/share/data/base/texpages"))))
7192 (home-page "https://wz2100.net")
7193 (synopsis "Texpages data for Warzone2100")
7194 (description "warzone2100-texpages is a set of textures to be used with
7195warzone2100.")
7196 (properties '((hidden? . #t)))
7197 (license (list
7198 ;; bdrops/backdrop[012].png
7199 ;; page-6-features-rockies.png
7200 ;; page-17-droid-weapons.png
7201 license:cc-by-sa3.0
7202 ;; bdrops/backdrop4.png
7203 ;; bdrops/backdrop6.png
7204 ;; page-25-sky-urban.png
7205 license:cc0
7206 ;; everything else
7207 license:gpl2+)))))
7208
7172(define-public warzone2100 7209(define-public warzone2100
7173 (package 7210 (package
7174 (name "warzone2100") 7211 (name "warzone2100")