c05503cabb7d60bd88b295c9d918dcc1982b4948
[jackhill/guix/guix.git] / gnu / packages / games.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013 John Darrington <jmd@gnu.org>
3 ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
4 ;;; Copyright © 2014, 2016 David Thompson <dthompson2@worcester.edu>
5 ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
7 ;;; Copyright © 2014 Sylvain Beucler <beuc@beuc.net>
8 ;;; Copyright © 2014, 2015, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
9 ;;; Copyright © 2014, 2015, 2016 Sou Bunnbu <iyzsong@gmail.com>
10 ;;; Copyright © 2014, 2015, 2019 Mark H Weaver <mhw@netris.org>
11 ;;; Copyright © 2015, 2016 Andreas Enge <andreas@enge.fr>
12 ;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
13 ;;; Copyright © 2015, 2017, 2018 Christopher Lemmer Webber <cwebber@dustycloud.org>
14 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
15 ;;; Copyright © 2015, 2016, 2017 Alex Kost <alezost@gmail.com>
16 ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
17 ;;; Copyright © 2016, 2017 Rodger Fox <thylakoid@openmailbox.org>
18 ;;; Copyright © 2016, 2017, 2018 ng0 <ng0@n0.is>
19 ;;; Copyright © 2016 Albin Söderqvist <albin@fripost.org>
20 ;;; Copyright © 2016, 2017, 2018, 2019 Kei Kebreau <kkebreau@posteo.net>
21 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
22 ;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
23 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
24 ;;; Copyright © 2016 Steve Webber <webber.sl@gmail.com>
25 ;;; Copyright © 2017 Adonay "adfeno" Felipe Nogueira <https://libreplanet.org/wiki/User:Adfeno> <adfeno@hyperbola.info>
26 ;;; Copyright © 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
27 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
28 ;;; Copyright © 2017, 2019 nee <nee-git@hidamari.blue>
29 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
30 ;;; Copyright © 2017, 2019 Marius Bakke <mbakke@fastmail.com>
31 ;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
32 ;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
33 ;;; Copyright © 2017, 2018, 2019, 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
34 ;;; Copyright © 2018 okapi <okapi@firemail.cc>
35 ;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
36 ;;; Copyright © 2018 Madalin Ionel-Patrascu <madalinionel.patrascu@mdc-berlin.de>
37 ;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
38 ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
39 ;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
40 ;;; Copyright © 2019, 2020 Oleg Pykhalov <go.wigust@gmail.com>
41 ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
42 ;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
43 ;;; Copyright © 2019 Jesse Gibbons <jgibbons2357+guix@gmail.com>
44 ;;; Copyright © 2019 Dan Frumin <dfrumin@cs.ru.nl>
45 ;;; Copyright © 2019, 2020 Guillaume Le Vaillant <glv@posteo.net>
46 ;;; Copyright © 2019, 2020 Timotej Lazar <timotej.lazar@araneo.si>
47 ;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
48 ;;; Copyright © 2017, 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
49 ;;;
50 ;;; This file is part of GNU Guix.
51 ;;;
52 ;;; GNU Guix is free software; you can redistribute it and/or modify it
53 ;;; under the terms of the GNU General Public License as published by
54 ;;; the Free Software Foundation; either version 3 of the License, or (at
55 ;;; your option) any later version.
56 ;;;
57 ;;; GNU Guix is distributed in the hope that it will be useful, but
58 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
59 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
60 ;;; GNU General Public License for more details.
61 ;;;
62 ;;; You should have received a copy of the GNU General Public License
63 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
64
65 (define-module (gnu packages games)
66 #:use-module (ice-9 match)
67 #:use-module ((guix licenses) #:prefix license:)
68 #:use-module (guix utils)
69 #:use-module (guix packages)
70 #:use-module (guix download)
71 #:use-module (guix git-download)
72 #:use-module (guix svn-download)
73 #:use-module (guix gexp)
74 #:use-module (gnu packages)
75 #:use-module (gnu packages algebra)
76 #:use-module (gnu packages autotools)
77 #:use-module (gnu packages backup)
78 #:use-module (gnu packages base)
79 #:use-module (gnu packages build-tools)
80 #:use-module (gnu packages admin)
81 #:use-module (gnu packages audio)
82 #:use-module (gnu packages avahi)
83 #:use-module (gnu packages assembly)
84 #:use-module (gnu packages bash)
85 #:use-module (gnu packages bison)
86 #:use-module (gnu packages boost)
87 #:use-module (gnu packages check)
88 #:use-module (gnu packages cmake)
89 #:use-module (gnu packages compression)
90 #:use-module (gnu packages curl)
91 #:use-module (gnu packages crypto)
92 #:use-module (gnu packages cyrus-sasl)
93 #:use-module (gnu packages documentation)
94 #:use-module (gnu packages docbook)
95 #:use-module (gnu packages emulators)
96 #:use-module (gnu packages flex)
97 #:use-module (gnu packages fltk)
98 #:use-module (gnu packages fonts)
99 #:use-module (gnu packages fontutils)
100 #:use-module (gnu packages freedesktop)
101 #:use-module (gnu packages fribidi)
102 #:use-module (gnu packages game-development)
103 #:use-module (gnu packages gcc)
104 #:use-module (gnu packages gettext)
105 #:use-module (gnu packages ghostscript)
106 #:use-module (gnu packages gimp)
107 #:use-module (gnu packages gl)
108 #:use-module (gnu packages glib)
109 #:use-module (gnu packages gnome)
110 #:use-module (gnu packages gnuzilla)
111 #:use-module (gnu packages gperf)
112 #:use-module (gnu packages graphics)
113 #:use-module (gnu packages gstreamer)
114 #:use-module (gnu packages gtk)
115 #:use-module (gnu packages guile)
116 #:use-module (gnu packages haskell)
117 #:use-module (gnu packages haskell-crypto)
118 #:use-module (gnu packages haskell-xyz)
119 #:use-module (gnu packages icu4c)
120 #:use-module (gnu packages image)
121 #:use-module (gnu packages imagemagick)
122 #:use-module (gnu packages kde)
123 #:use-module (gnu packages kde-frameworks)
124 #:use-module (gnu packages less)
125 #:use-module (gnu packages libcanberra)
126 #:use-module (gnu packages libedit)
127 #:use-module (gnu packages libunwind)
128 #:use-module (gnu packages linux)
129 #:use-module (gnu packages llvm)
130 #:use-module (gnu packages lua)
131 #:use-module (gnu packages man)
132 #:use-module (gnu packages maths)
133 #:use-module (gnu packages mp3)
134 #:use-module (gnu packages music)
135 #:use-module (gnu packages multiprecision)
136 #:use-module (gnu packages ncurses)
137 #:use-module (gnu packages netpbm)
138 #:use-module (gnu packages networking)
139 #:use-module (gnu packages ocaml)
140 #:use-module (gnu packages opencl)
141 #:use-module (gnu packages pcre)
142 #:use-module (gnu packages perl)
143 #:use-module (gnu packages perl-check)
144 #:use-module (gnu packages pkg-config)
145 #:use-module (gnu packages pulseaudio)
146 #:use-module (gnu packages python)
147 #:use-module (gnu packages python-xyz)
148 #:use-module (gnu packages qt)
149 #:use-module (gnu packages readline)
150 #:use-module (gnu packages shells)
151 #:use-module (gnu packages sdl)
152 #:use-module (gnu packages serialization)
153 #:use-module (gnu packages sqlite)
154 #:use-module (gnu packages squirrel)
155 #:use-module (gnu packages swig)
156 #:use-module (gnu packages tcl)
157 #:use-module (gnu packages terminals)
158 #:use-module (gnu packages texinfo)
159 #:use-module (gnu packages textutils)
160 #:use-module (gnu packages tls)
161 #:use-module (gnu packages upnp)
162 #:use-module (gnu packages video)
163 #:use-module (gnu packages vulkan)
164 #:use-module (gnu packages web)
165 #:use-module (gnu packages wget)
166 #:use-module (gnu packages wxwidgets)
167 #:use-module (gnu packages xdisorg)
168 #:use-module (gnu packages xorg)
169 #:use-module (gnu packages xiph)
170 #:use-module (gnu packages xml)
171 #:use-module (gnu packages messaging)
172 #:use-module (gnu packages networking)
173 #:use-module (guix build-system glib-or-gtk)
174 #:use-module (guix build-system gnu)
175 #:use-module (guix build-system go)
176 #:use-module (guix build-system meson)
177 #:use-module (guix build-system scons)
178 #:use-module (guix build-system python)
179 #:use-module (guix build-system cmake)
180 #:use-module (guix build-system qt)
181 #:use-module (guix build-system trivial)
182 #:use-module ((srfi srfi-1) #:hide (zip))
183 #:use-module (srfi srfi-26))
184
185 ;; Data package for adanaxisgpl.
186 (define adanaxis-mush
187 (let ((version "1.1.0"))
188 (origin
189 (method url-fetch)
190 (uri (string-append "http://www.mushware.com/files/adanaxis-mush-"
191 version ".tar.gz"))
192 (sha256
193 (base32 "0mk9ibis5nkdcalcg1lkgnsdxxbw4g5w2i3icjzy667hqirsng03")))))
194
195 (define-public adanaxisgpl
196 (package
197 (name "adanaxisgpl")
198 (version "1.2.5")
199 (source
200 (origin
201 (method url-fetch)
202 (uri (string-append "http://www.mushware.com/files/adanaxisgpl-"
203 version ".tar.gz"))
204 (sha256
205 (base32 "0jkn637jaabvlhd6hpvzb57vvjph94l6fbf7qxbjlw9zpr19dw1f"))
206 (modules '((guix build utils)))
207 (snippet
208 '(begin
209 ;; Necessary for building with gcc >=4.7.
210 (substitute* "src/Mushcore/MushcoreSingleton.h"
211 (("SingletonPtrSet\\(new SingletonType\\);")
212 "MushcoreSingleton::SingletonPtrSet(new SingletonType);"))
213 ;; Avoid an "invalid conversion from const char* to char*" error.
214 (substitute* "src/Platform/X11/PlatformMiscUtils.cpp"
215 (("char \\*end, \\*result;")
216 (string-append "const char *end;"
217 "\n"
218 "char *result;")))
219 #t))))
220 (build-system gnu-build-system)
221 (arguments
222 `(#:tests? #f ; no check target
223 #:phases
224 (modify-phases %standard-phases
225 (add-after 'install 'install-data
226 (lambda* (#:key inputs outputs #:allow-other-keys)
227 (let ((data (assoc-ref inputs "adanaxis-mush"))
228 (share (string-append (assoc-ref outputs "out")
229 "/share/" ,name "-" ,version)))
230 (mkdir-p share)
231 (invoke "tar" "xvf" data "-C" share)))))))
232 (native-inputs
233 `(("adanaxis-mush" ,adanaxis-mush))) ; game data
234 (inputs
235 `(("expat" ,expat)
236 ("freeglut" ,freeglut)
237 ("glu" ,glu)
238 ("libjpeg" ,libjpeg)
239 ("libogg" ,libogg)
240 ("libtiff" ,libtiff)
241 ("libvorbis" ,libvorbis)
242 ("libx11" ,libx11)
243 ("libxext" ,libxext)
244 ("pcre" ,pcre)
245 ("sdl" ,sdl)
246 ("sdl-mixer" ,sdl-mixer)))
247 (home-page "https://www.mushware.com")
248 (synopsis "Action game in four spatial dimensions")
249 (description
250 "Adanaxis is a fast-moving first person shooter set in deep space, where
251 the fundamentals of space itself are changed. By adding another dimension to
252 space this game provides an environment with movement in four directions and
253 six planes of rotation. Initially the game explains the 4D control system via
254 a graphical sequence, before moving on to 30 levels of gameplay with numerous
255 enemy, ally, weapon and mission types. Features include simulated 4D texturing,
256 mouse and joystick control, and original music.")
257 (license license:gpl2)))
258
259 (define-public alex4
260 (package
261 (name "alex4")
262 (version "1.2.1")
263 (source
264 (origin
265 (method git-fetch)
266 (uri (git-reference
267 (url "https://github.com/carstene1ns/alex4.git")
268 (commit version)))
269 (file-name (git-file-name name version))
270 (sha256
271 (base32 "098wy72mh4lsvq3gm0rhamjssf9l1hp6hhkpzrv7klpb97cwwc3h"))))
272 (build-system gnu-build-system)
273 (arguments
274 `(#:tests? #f ; no check target
275 #:make-flags
276 (list "CC=gcc"
277 "CFLAGS=-D_FILE_OFFSET_BITS=64"
278 (string-append "PREFIX=" (assoc-ref %outputs "out")))
279 #:phases
280 (modify-phases %standard-phases
281 (delete 'configure) ; no configure script
282 (add-after 'install 'install-data
283 (lambda* (#:key outputs #:allow-other-keys)
284 (let ((share (string-append (assoc-ref outputs "out")
285 "/share/" ,name)))
286 (install-file "alex4.ini" share)
287 #t))))))
288 (inputs
289 `(("allegro" ,allegro-4)
290 ("dumb" ,dumb-allegro4)))
291 (home-page "http://allegator.sourceforge.net/")
292 (synopsis "Retro platform game")
293 (description
294 "Guide Alex the Allegator through the jungle in order to save his
295 girlfriend Lola from evil humans who want to make a pair of shoes out of her.
296 Plenty of classic platforming in four nice colors guaranteed!
297
298 The game includes a built-in editor so you can design and share your own maps.")
299 (license license:gpl2+)))
300
301 (define-public armagetronad
302 (package
303 (name "armagetronad")
304 (version "0.2.8.3.4")
305 (source (origin
306 (method url-fetch)
307 (uri (string-append "mirror://sourceforge/armagetronad/stable/"
308 version "/armagetronad-" version ".src.tar.gz"))
309 (sha256
310 (base32
311 "1pgy0r80z702qdv94aw3ywdn4ynnr4cdi86ml558pljfc5ygasj4"))))
312 (build-system gnu-build-system)
313 (inputs
314 `(("libxml2" ,libxml2)
315 ("sdl" ,sdl)
316 ("sdl-image" ,sdl-image)
317 ("freeglut" ,freeglut)
318 ("libpng" ,libpng)
319 ("libjpeg-turbo" ,libjpeg-turbo)))
320 (home-page "http://www.armagetronad.org")
321 (synopsis "Tron clone in 3D")
322 (description "Armagetron Advanced is a multiplayer game in 3d that
323 attempts to emulate and expand on the lightcycle sequence from the movie Tron.
324 It's an old school arcade game slung into the 21st century. Highlights
325 include a customizable playing arena, HUD, unique graphics, and AI bots. For
326 the more advanced player there are new game modes and a wide variety of
327 physics settings to tweak as well.")
328 (license license:gpl2+)))
329
330 (define-public armagetron-advanced
331 (deprecated-package "armagetron-advanced" armagetronad))
332
333 (define-public bastet
334 (package
335 (name "bastet")
336 (version "0.43.2")
337 (source
338 (origin
339 (method git-fetch)
340 (uri (git-reference
341 (url "https://github.com/fph/bastet.git")
342 (commit version)))
343 (file-name (git-file-name name version))
344 (sha256
345 (base32 "09kamxapm9jw9przpsgjfg33n9k94bccv65w95dakj0br33a75wn"))
346 (patches
347 (search-patches "bastet-change-source-of-unordered_set.patch"))))
348 (build-system gnu-build-system)
349 (arguments
350 `(#:make-flags
351 (list (string-append "CXXFLAGS=-I"
352 (assoc-ref %build-inputs "boost") "/include"))
353 #:phases
354 (modify-phases %standard-phases
355 (delete 'configure) ; no configure script
356 (replace 'check
357 ;; The 'Test' target builds the tests, but doesn't actually run them.
358 (lambda* (#:key make-flags #:allow-other-keys)
359 (apply invoke "make" "Test" make-flags)
360 (setenv "HOME" ".")
361 (invoke "./Test")))
362 (replace 'install
363 (lambda* (#:key outputs #:allow-other-keys)
364 (let* ((out (assoc-ref outputs "out"))
365 (share (string-append out "/share"))
366 (hicolor (string-append share "/icons/hicolor")))
367 (install-file "bastet"
368 (string-append out "/bin"))
369
370 (install-file "bastet.desktop"
371 (string-append share "/applications"))
372 (install-file "bastet.svg"
373 (string-append hicolor "/scalable/apps"))
374
375 (install-file "bastet.appdata.xml"
376 (string-append share "/appdata"))
377
378 (install-file "bastet.6"
379 (string-append out "/share/man/man6"))
380 #t))))))
381 (native-inputs
382 `(("hicolor-icon-theme" ,hicolor-icon-theme)))
383 (inputs
384 `(("boost" ,boost)
385 ("ncurses" ,ncurses)))
386 (home-page "http://fph.altervista.org/prog/bastet.html")
387 (synopsis "Antagonistic Tetris-style falling brick game for text terminals")
388 (description
389 "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick
390 game. Unlike normal Tetris, Bastet does not choose the next brick at random.
391 Instead, it uses a special algorithm to choose the worst brick possible.
392
393 Playing bastet can be a painful experience, especially if you usually make
394 canyons and wait for the long I-shaped block to clear four rows at a time.")
395 (license license:gpl3+)))
396
397 (define-public cataclysm-dda
398 (let ((commit "9c732a5de48928691ab863d3ab275ca7b0e522fc"))
399 (package
400 (name "cataclysm-dda")
401 (version "0.D")
402 (source (origin
403 (method git-fetch)
404 (uri (git-reference
405 (url "https://github.com/CleverRaven/Cataclysm-DDA.git")
406 (commit commit)))
407 (sha256
408 (base32
409 "00zzhx1mh1qjq668cga5nbrxp2qk6b82j5ak65skhgnlr6ii4ysc"))
410 (file-name (git-file-name name version))))
411 (build-system gnu-build-system)
412 (arguments
413 '(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
414 "USE_HOME_DIR=1" "DYNAMIC_LINKING=1" "RELEASE=1"
415 "LOCALIZE=1" "LANGUAGES=all")
416 #:phases
417 (modify-phases %standard-phases
418 (delete 'configure)
419 (add-after 'build 'build-tiles
420 (lambda* (#:key make-flags outputs #:allow-other-keys)
421 ;; Change prefix directory and enable tile graphics and sound.
422 (apply invoke "make" "TILES=1" "SOUND=1"
423 (string-append "PREFIX="
424 (assoc-ref outputs "tiles"))
425 (cdr make-flags))))
426 (add-after 'install 'install-tiles
427 (lambda* (#:key make-flags outputs #:allow-other-keys)
428 (apply invoke "make" "install" "TILES=1" "SOUND=1"
429 (string-append "PREFIX="
430 (assoc-ref outputs "tiles"))
431 (cdr make-flags)))))
432 ;; TODO: Add libtap++ from https://github.com/cbab/libtappp as a native
433 ;; input in order to support tests.
434 #:tests? #f))
435 (outputs '("out"
436 "tiles")) ; For tile graphics and sound support.
437 (native-inputs
438 `(("gettext" ,gettext-minimal)
439 ("pkg-config" ,pkg-config)))
440 (inputs
441 `(("freetype" ,freetype)
442 ("libogg" ,libogg)
443 ("libvorbis" ,libvorbis)
444 ("ncurses" ,ncurses)
445 ("sdl2" ,sdl2)
446 ("sdl2-image" ,sdl2-image)
447 ("sdl2-ttf" ,sdl2-ttf)
448 ("sdl2-mixer" ,sdl2-mixer)))
449 (home-page "http://en.cataclysmdda.com/")
450 (synopsis "Survival horror roguelike video game")
451 (description
452 "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set
453 in a post-apocalyptic world. Struggle to survive in a harsh, persistent,
454 procedurally generated world. Scavenge the remnants of a dead civilization
455 for food, equipment, or, if you are lucky, a vehicle with a full tank of gas
456 to get you out of Dodge. Fight to defeat or escape from a wide variety of
457 powerful monstrosities, from zombies to giant insects to killer robots and
458 things far stranger and deadlier, and against the others like yourself, that
459 want what you have.")
460 (license license:cc-by-sa3.0))))
461
462 (define-public cataclysm-dark-days-ahead
463 (deprecated-package "cataclysm-dark-days-ahead" cataclysm-dda))
464
465 (define-public corsix-th
466 (package
467 (name "corsix-th")
468 (version "0.63")
469 (source
470 (origin
471 (method git-fetch)
472 (uri (git-reference
473 (url "https://github.com/CorsixTH/CorsixTH.git")
474 (commit (string-append "v" version))))
475 (file-name (git-file-name name version))
476 (sha256
477 (base32 "1rkyk8g55xny276s0hr5k8mq6f4nzz56d3k2mp09dzfymrqb8hgi"))))
478 (build-system cmake-build-system)
479 (arguments
480 `(#:phases
481 (modify-phases %standard-phases
482 (add-after 'install 'wrap-binary
483 (lambda _
484 ;; Set Lua module paths and default MIDI soundfont on startup.
485 (let* ((out (assoc-ref %outputs "out"))
486 (fluid (assoc-ref %build-inputs "fluid-3"))
487 (lua-version ,(version-major+minor (package-version lua)))
488 (lua-cpath
489 (map (lambda (lib)
490 (string-append
491 (assoc-ref %build-inputs (string-append "lua-" lib))
492 "/lib/lua/" lua-version "/?.so"))
493 '("filesystem" "lpeg"))))
494 (wrap-program (string-append out "/bin/corsix-th")
495 `("LUA_CPATH" ";" = ,lua-cpath)
496 `("SDL_SOUNDFONTS" ":" suffix
497 (,(string-append fluid "/share/soundfonts/FluidR3Mono_GM.sf3")))))
498 #t)))
499 #:tests? #f)) ; TODO need busted package to run tests
500 ;; Omit Lua-Socket dependency to disable automatic updates.
501 (inputs
502 `(("ffmpeg" ,ffmpeg)
503 ("fluid-3" ,fluid-3)
504 ("freetype" ,freetype)
505 ("lua" ,lua)
506 ("lua-filesystem" ,lua-filesystem)
507 ("lua-lpeg" ,lua-lpeg)
508 ("sdl2" ,sdl2)
509 ("sdl2-mixer" ,sdl2-mixer)))
510 (home-page "https://corsixth.com")
511 (synopsis "Implementation of the @i{Theme Hospital} game engine")
512 (description
513 "This package provides a reimplementation of the 1997 Bullfrog business
514 simulation game @i{Theme Hospital}. As well as faithfully recreating the
515 original engine, CorsixTH adds support for high resolutions, custom levels and
516 more. This package does @emph{not} provide the game assets.")
517 (license (list
518 license:expat ; main license
519 license:bsd-3)))) ; CorsixTH/Src/random.c
520
521 (define-public cowsay
522 (package
523 (name "cowsay")
524 (version "3.04")
525 (source (origin
526 (method git-fetch)
527 (uri (git-reference
528 (url "https://github.com/tnalpgge/rank-amateur-cowsay.git")
529 (commit (string-append name "-" version))))
530 (file-name (git-file-name name version))
531 (sha256
532 (base32
533 "06455kq37hvq1xb7adyiwrx0djs50arsxvjgixyxks16lm1rlc7n"))))
534 (build-system gnu-build-system)
535 (arguments
536 `(#:phases
537 (modify-phases %standard-phases
538 (delete 'configure) ; no configure script
539 (delete 'build) ; nothing to be built
540 (replace 'install
541 (lambda* (#:key outputs #:allow-other-keys)
542 (invoke "sh" "install.sh"
543 (assoc-ref outputs "out"))))
544 (delete 'check)
545 (add-after 'install 'check
546 (lambda* (#:key outputs #:allow-other-keys)
547 (invoke (string-append (assoc-ref outputs "out")
548 "/bin/cowsay")
549 "We're done!"))))))
550 (inputs
551 `(("perl" ,perl)))
552 (home-page (string-append "https://web.archive.org/web/20071026043648/"
553 "http://www.nog.net:80/~tony/warez/cowsay.shtml"))
554 (synopsis "Speaking cow text filter")
555 (description "Cowsay is basically a text filter. Send some text into it,
556 and you get a cow saying your text. If you think a talking cow isn't enough,
557 cows can think too: all you have to do is run @command{cowthink}. If you're
558 tired of cows, a variety of other ASCII-art messengers are available.")
559 (license license:gpl3+)))
560
561 (define-public lolcat
562 (let ((commit "35dca3d0a381496d7195cd78f5b24aa7b62f2154")
563 (revision "0"))
564 (package
565 (name "lolcat")
566 (version (git-version "1.0" revision commit))
567 (source
568 (origin
569 (method git-fetch)
570 (uri (git-reference
571 (url "https://github.com/jaseg/lolcat.git")
572 (commit commit)))
573 (sha256
574 (base32
575 "0jjbkqcc2ikjxd1xgdyv4rb0vsw218181h89f2ywg29ffs3ypd8g"))
576 (file-name (git-file-name name version))))
577 (build-system gnu-build-system)
578 (arguments
579 `(#:tests? #f ;; no check target
580 #:make-flags (list "CC=gcc")
581 #:phases
582 (modify-phases %standard-phases
583 (delete 'bootstrap)
584 (delete 'configure)
585 (replace 'install
586 (lambda* (#:key outputs #:allow-other-keys)
587 (let* ((out (assoc-ref outputs "out"))
588 (dest (string-append out "/bin")))
589 (mkdir-p dest)
590 (install-file "lolcat" dest)
591 (install-file "censor" dest)
592 #t))))))
593 (home-page "https://github.com/jaseg/lolcat")
594 (synopsis "Rainbow coloring effect for text console display")
595 (description "@command{lolcat} concatenates files and streams like
596 regular @command{cat}, but it also adds terminal escape codes between
597 characters and lines resulting in a rainbow effect.")
598 (license license:wtfpl2))))
599
600 (define-public freedoom
601 (package
602 (name "freedoom")
603 (version "0.12.1")
604 (source
605 (origin
606 (method git-fetch)
607 (uri (git-reference
608 (url "https://github.com/freedoom/freedoom.git")
609 (commit (string-append "v" version))))
610 (file-name (git-file-name name version))
611 (sha256
612 (base32 "1mq60lfwaaxmch7hsz8403pwafnlsmsd5z2df2j77ppwndwcrypb"))))
613 (build-system gnu-build-system)
614 (arguments
615 '(#:make-flags
616 (list (string-append "prefix=" (assoc-ref %outputs "out")))
617 #:tests? #f ; no check target
618 #:phases
619 (modify-phases %standard-phases
620 (delete 'bootstrap)
621 (replace 'configure
622 (lambda* (#:key inputs outputs #:allow-other-keys)
623 (let* ((freedoom (assoc-ref outputs "out"))
624 (wad-dir (string-append freedoom "/share/games/doom")))
625 ;; Make sure that the install scripts know where to find
626 ;; the appropriate WAD files.
627 (substitute* "dist/freedoom"
628 (("IWAD=freedm.wad")
629 (string-append "IWAD=" wad-dir "/freedm.wad"))
630 (("IWAD=freedoom1.wad")
631 (string-append "IWAD=" wad-dir "/freedoom1.wad"))
632 (("IWAD=freedoom2.wad")
633 (string-append "IWAD=" wad-dir "/freedoom2.wad")))
634 #t))))))
635 (native-inputs
636 `(("asciidoc" ,asciidoc)
637 ("deutex" ,deutex)
638 ("python" ,python)
639 ("python-pillow" ,python-pillow)))
640 (home-page "https://freedoom.github.io/")
641 (synopsis "Free content game based on the Doom engine")
642 (native-search-paths
643 (list (search-path-specification
644 (variable "DOOMWADDIR")
645 (files '("share/games/doom")))
646 (search-path-specification
647 (variable "DOOMWADPATH")
648 (files '("share/games/doom")))))
649 (description
650 "The Freedoom project aims to create a complete free content first person
651 shooter game. Freedoom by itself is just the raw material for a game: it must
652 be paired with a compatible game engine (such as @code{prboom-plus}) to be
653 played. Freedoom complements the Doom engine with free levels, artwork, sound
654 effects and music to make a completely free game.")
655 (license license:bsd-3)))
656
657 (define-public freedroidrpg
658 (package
659 (name "freedroidrpg")
660 (version "0.16.1")
661 (source
662 (origin
663 (method url-fetch)
664 (uri (string-append "http://ftp.osuosl.org/pub/freedroid/"
665 "freedroidRPG-" (version-major+minor version) "/"
666 "freedroidRPG-" version ".tar.gz"))
667 (sha256
668 (base32 "0n4kn38ncmcy3lrxmq8fjry6c1z50z4q1zcqfig0j4jb0dsz2va2"))))
669 (build-system gnu-build-system)
670 (arguments
671 `(#:configure-flags
672 (list
673 (string-append "CFLAGS="
674 "-I" (assoc-ref %build-inputs "sdl-gfx") "/include/SDL "
675 "-I" (assoc-ref %build-inputs "sdl-image") "/include/SDL "
676 "-I" (assoc-ref %build-inputs "sdl-mixer") "/include/SDL")
677 "--enable-opengl")
678 ;; FIXME: the test suite fails with the following error output:
679 ;; 4586 Segmentation fault env SDL_VIDEODRIVER=dummy \
680 ;; SDL_AUDIODRIVER=dummy ./src/freedroidRPG -nb text
681 #:tests? #f))
682 (native-inputs
683 `(("pkg-config" ,pkg-config)))
684 (inputs
685 `(("glu" ,glu)
686 ("libjpeg" ,libjpeg)
687 ("libogg" ,libogg)
688 ("libpng" ,libpng)
689 ("libvorbis" ,libvorbis)
690 ("mesa" ,mesa)
691 ("python" ,python-wrapper)
692 ("sdl" ,sdl)
693 ("sdl-gfx" ,sdl-gfx)
694 ("sdl-image" ,sdl-image)
695 ("sdl-mixer" ,sdl-mixer)
696 ("zlib" ,zlib)))
697 (home-page "http://www.freedroid.org/")
698 (synopsis "Isometric role-playing game against killer robots")
699 (description
700 "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.
701 The game tells the story of a world destroyed by a conflict between robots and
702 their human masters. To restore peace to humankind, the player must complete
703 numerous quests while fighting off rebelling robots---either by taking control
704 of them, or by simply blasting them to pieces with melee and ranged weapons in
705 real-time combat.")
706 (license (list license:expat ; lua/
707 license:gpl3 ; src/gen_savestruct.py
708 license:gpl2+)))) ; the rest
709
710 (define-public golly
711 (package
712 (name "golly")
713 (version "3.3")
714 (source (origin
715 (method url-fetch)
716 (uri (string-append "mirror://sourceforge/golly/golly/golly-"
717 version "/golly-" version
718 "-src.tar.gz"))
719 (sha256
720 (base32
721 "1j3ksnar4rdam4xiyspgyrs1pifbvxfxkrn65brkwxpx39mpgzc8"))))
722 (build-system gnu-build-system)
723 (arguments
724 '(#:make-flags (list "CC=gcc"
725 (string-append "GOLLYDIR="
726 (assoc-ref %outputs "out")
727 "/share/golly"))
728 #:tests? #f ; no check target
729 #:phases
730 (modify-phases %standard-phases
731 (replace 'configure
732 (lambda* (#:key inputs #:allow-other-keys)
733 ;; For some reason, setting the PYTHON_SHLIB make flag doesn't
734 ;; properly set the path to the Python shared library. This
735 ;; substitution acheives the same end by different means.
736 (substitute* "gui-wx/wxprefs.cpp"
737 (("pythonlib = wxT\\(STRINGIFY\\(PYTHON_SHLIB\\)\\)")
738 (string-append "pythonlib = \""
739 (assoc-ref inputs "python")
740 "/lib/libpython-2.7.so\"")))
741 #t))
742 (replace 'build
743 (lambda* (#:key make-flags outputs #:allow-other-keys)
744 (with-directory-excursion "gui-wx"
745 (apply invoke `("make" ,@make-flags "-f" "makefile-gtk")))))
746 (replace 'install
747 (lambda* (#:key outputs #:allow-other-keys)
748 (let* ((out (assoc-ref outputs "out"))
749 (bin (string-append out "/bin"))
750 (doc (string-append out "/share/doc/golly"))
751 (pixmaps (string-append out "/share/pixmaps"))
752 (share (string-append out "/share/golly")))
753 (for-each (lambda (binary)
754 (install-file binary bin))
755 '("bgolly" "golly"))
756 (for-each (lambda (document)
757 (install-file
758 (string-append "docs/" document ".html")
759 doc))
760 '("License" "ReadMe" "ToDo"))
761 (install-file "gui-wx/icons/appicon.xpm" pixmaps)
762 (for-each (lambda (folder)
763 (copy-recursively
764 folder
765 (string-append share "/" folder)))
766 '("Help" "Patterns" "Rules" "Scripts")))
767 #t)))))
768 (native-inputs
769 `(("lua" ,lua)))
770 (inputs
771 `(("glu" ,glu)
772 ("mesa" ,mesa)
773 ("python" ,python-2)
774 ("wxwidgets" ,wxwidgets-gtk2)
775 ("zlib" ,zlib)))
776 (home-page "http://golly.sourceforge.net/")
777 (synopsis "Software for exploring cellular automata")
778 (description
779 "Golly simulates Conway's Game of Life and many other types of cellular
780 automata. The following features are available:
781 @enumerate
782 @item Support for bounded and unbounded universes, with cells of up to 256
783 states.
784 @item Support for multiple algorithms, including Bill Gosper's Hashlife
785 algorithm.
786 @item Loading patterns from BMP, PNG, GIF and TIFF image files.
787 @item Reading RLE, macrocell, Life 1.05/1.06, dblife and MCell files.
788 @item Scriptable via Lua or Python.
789 @item Extracting patterns, rules and scripts from zip files.
790 @item Downloading patterns, rules and scripts from online archives.
791 @item Pasting patterns from the clipboard.
792 @item Unlimited undo/redo.
793 @item Configurable keyboard shortcuts.
794 @item Auto fit option to keep patterns within the view.
795 @end enumerate")
796 (license license:gpl2+)))
797
798 (define-public julius
799 (package
800 (name "julius")
801 (version "1.2.0")
802 (source
803 (origin
804 (method git-fetch)
805 (uri (git-reference
806 (url "https://github.com/bvschaik/julius.git")
807 (commit (string-append "v" version))))
808 (file-name (git-file-name name version))
809 (sha256
810 (base32 "0kgyzfjii4dhpy2h05977alwdmxyxb4jxznnrhlgb21m0ybncmvp"))))
811 (build-system cmake-build-system)
812 (inputs
813 `(("sdl2" ,sdl2)
814 ("sdl2-mixer" ,sdl2-mixer)))
815 (home-page "https://github.com/bvschaik/julius")
816 (synopsis "Re-implementation of Caesar III game engine")
817 (description
818 "Engine for Caesar III, a city-building real-time strategy game.
819 Julius includes some UI enhancements while preserving the logic (including
820 bugs) of the original game, so that saved games are compatible. This package
821 does not include game data.")
822 (license (list license:agpl3
823 license:expat ; ext/dirent
824 license:zlib)))) ; ext/tinyfiledialogs
825
826 (define-public meandmyshadow
827 (package
828 (name "meandmyshadow")
829 (version "0.5a")
830 (source (origin
831 (method url-fetch)
832 (uri (string-append "mirror://sourceforge/meandmyshadow/"
833 version "/meandmyshadow-" version
834 "-src.tar.gz"))
835 (sha256
836 (base32
837 "0i98v6cgmpsxy7mbb0s2y6f6qq6mkwzk2nrv1nz39ncf948aky2h"))))
838 (build-system cmake-build-system)
839 (arguments
840 `(#:tests? #f)) ; there are no tests
841 (native-inputs
842 `(("pkg-config" ,pkg-config)))
843 (inputs
844 `(("curl" ,curl)
845 ("libarchive" ,libarchive)
846 ("lua" ,lua)
847 ("sdl" ,(sdl-union (list sdl2
848 sdl2-image
849 sdl2-mixer
850 sdl2-ttf)))))
851 (home-page "https://acmepjz.github.io/meandmyshadow/")
852 (synopsis "Puzzle/platform game")
853 (description "Me and My Shadow is a puzzle/platform game in which you try
854 to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks
855 and much more stand between you and the exit. Record your moves and let your
856 shadow mimic them to reach blocks you couldn't reach alone.")
857 (license license:gpl3+)))
858
859 (define-public knights
860 (package
861 (name "knights")
862 (version "025")
863 (source (origin
864 (method url-fetch)
865 (uri (string-append "http://www.knightsgame.org.uk/files/knights_"
866 version "_src.tar.gz"))
867 (sha256
868 (base32
869 "18vp2ygvn0s0jz8rm585jqf6hjqkam1ximq81k0r9hpmfj7wb88f"))))
870 (build-system gnu-build-system)
871 (arguments
872 '(#:make-flags
873 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
874 #:phases
875 (modify-phases %standard-phases
876 ;; No configure script.
877 (delete 'configure))
878 #:tests? #f)) ;; No check target.
879 (inputs
880 `(("boost" ,boost)
881 ("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer)))
882 ("freetype" ,freetype)
883 ("fontconfig" ,fontconfig)
884 ("curl" ,curl)))
885 (native-inputs
886 `(("pkg-config" ,pkg-config)))
887 (home-page "http://www.knightsgame.org.uk/")
888 (synopsis "Multiplayer dungeon game involving knights and quests")
889 (description "Knights is a multiplayer game involving several knights who
890 must run around a dungeon and complete various quests. Each game revolves
891 around a quest – for example, you might have to find some items and carry them
892 back to your starting point. This may sound easy, but as there are only
893 enough items in the dungeon for one player to win, you may end up having to
894 kill your opponents to get their stuff! Other quests involve escaping from
895 the dungeon, fighting a duel to the death against the enemy knights, or
896 destroying an ancient book using a special wand.")
897 ;; This package includes modified sources of lua (X11), enet (Expat), and
898 ;; guichan (BSD-3). The "Coercri" library is released under the Boost
899 ;; license. The whole package is released under GPLv3+.
900 (license license:gpl3+)))
901
902 (define-public gnubg
903 (package
904 (name "gnubg")
905 (version "1.06.002")
906 (source
907 (origin
908 (method url-fetch)
909 (uri (string-append "mirror://gnu/gnubg/gnubg-release-"
910 version "-sources.tar.gz"))
911 (sha256
912 (base32
913 "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf"))))
914 (build-system gnu-build-system)
915 (inputs `(("glib" ,glib)
916 ("readline" ,readline)
917 ("gtk+" ,gtk+-2)
918 ("mesa" ,mesa)
919 ("glu" ,glu)
920 ("gtkglext" ,gtkglext)
921 ("sqlite" ,sqlite)
922 ("libcanberra" ,libcanberra)))
923 (native-inputs `(("python-2" ,python-2)
924 ("pkg-config" ,pkg-config)))
925 (arguments
926 `(#:phases
927 (modify-phases %standard-phases
928 (add-after 'install 'install-desktop-file
929 (lambda* (#:key outputs #:allow-other-keys)
930 (let* ((out (assoc-ref outputs "out"))
931 (apps (string-append out "/share/applications")))
932 (mkdir-p apps)
933 (with-output-to-file (string-append apps "/gnubg.desktop")
934 (lambda _
935 (format #t
936 "[Desktop Entry]~@
937 Name=GNU Backgammon~@
938 Exec=~a/bin/gnubg -w~@
939 Icon=gnubg~@
940 Categories=Game;~@
941 Terminal=false~@
942 Type=Application~%"
943 out))))
944 #t)))))
945 (home-page "https://www.gnu.org/software/gnubg/")
946 (synopsis "Backgammon game")
947 (description "The GNU backgammon application (also known as \"gnubg\") can
948 be used for playing, analyzing and teaching the game. It has an advanced
949 evaluation engine based on artificial neural networks suitable for both
950 beginners and advanced players. In addition to a command-line interface, it
951 also features an attractive, 3D representation of the playing board.")
952 (license license:gpl3+)))
953
954 (define-public gnubackgammon
955 (deprecated-package "gnubackgammon" gnubg))
956
957 (define-public gnubik
958 (package
959 (name "gnubik")
960 (version "2.4.3")
961 (source
962 (origin
963 (method url-fetch)
964 (uri (string-append "mirror://gnu/gnubik/gnubik-"
965 version ".tar.gz"))
966 (sha256
967 (base32
968 "1vlf924mq8hg93bsjj0rzvs0crc6psmlxyc6zn0fr7msnmpx6gib"))))
969 (build-system gnu-build-system)
970 (inputs `(("gtk+" ,gtk+-2)
971 ("mesa" ,mesa)
972 ("glu" ,glu)
973 ("libx11" ,libx11)
974 ("guile" ,guile-2.0)
975 ("gtkglext" ,gtkglext)))
976 (native-inputs `(("gettext" ,gettext-minimal)
977 ("pkg-config" ,pkg-config)))
978 (home-page "https://www.gnu.org/software/gnubik/")
979 (synopsis "3d Rubik's cube game")
980 (description
981 "GNUbik is a puzzle game in which you must manipulate a cube to make
982 each of its faces have a uniform color. The game is customizable, allowing
983 you to set the size of the cube (the default is 3x3) or to change the colors.
984 You may even apply photos to the faces instead of colors. The game is
985 scriptable with Guile.")
986 (license license:gpl3+)))
987
988 (define-public gnushogi
989 (package
990 (name "gnushogi")
991 (version "1.4.2")
992 (source
993 (origin
994 (method url-fetch)
995 (uri (string-append "mirror://gnu/gnushogi/gnushogi-"
996 version ".tar.gz"))
997 (sha256
998 (base32
999 "0a9bsl2nbnb138lq0h14jfc5xvz7hpb2bcsj4mjn6g1hcsl4ik0y"))))
1000 (arguments `(#:tests? #f)) ;; No check target.
1001 (build-system gnu-build-system)
1002 (home-page "https://www.gnu.org/software/gnushogi/")
1003 (synopsis "The game of Shogi (Japanese chess)")
1004 (description "GNU Shogi is a program that plays the game Shogi (Japanese
1005 Chess). It is similar to standard chess but this variant is far more complicated.")
1006 (license license:gpl3+)))
1007
1008 (define-public ltris
1009 (package
1010 (name "ltris")
1011 (version "1.0.19")
1012 (source
1013 (origin
1014 (method url-fetch)
1015 (uri (string-append "http://prdownloads.sourceforge.net/lgames/"
1016 "ltris-" version ".tar.gz"))
1017 (sha256
1018 (base32
1019 "1895wv1fqklrj4apkz47rnkcfhfav7zjknskw6p0886j35vrwslg"))))
1020 (build-system gnu-build-system)
1021 (arguments
1022 '(;; The code in LTris uses traditional GNU semantics for inline functions
1023 #:configure-flags '("CFLAGS=-fgnu89-inline")
1024 #:phases
1025 (modify-phases %standard-phases
1026 (add-after 'set-paths 'set-sdl-paths
1027 (lambda* (#:key inputs #:allow-other-keys)
1028 (setenv "CPATH"
1029 (string-append (assoc-ref inputs "sdl-union")
1030 "/include/SDL:"
1031 (or (getenv "CPATH") "")))
1032 #t)))))
1033 (inputs
1034 `(("sdl-union" ,(sdl-union (list sdl sdl-mixer)))))
1035 (home-page "http://lgames.sourceforge.net/LTris/")
1036 (synopsis "Tetris clone based on the SDL library")
1037 (description
1038 "LTris is a tetris clone: differently shaped blocks are falling down the
1039 rectangular playing field and can be moved sideways or rotated by 90 degree
1040 units with the aim of building lines without gaps which then disappear (causing
1041 any block above the deleted line to fall down). LTris has three game modes: In
1042 Classic you play until the stack of blocks reaches the top of the playing field
1043 and no new blocks can enter. In Figures the playing field is reset to a new
1044 figure each level and later on tiles and lines suddenly appear. In Multiplayer
1045 up to three players (either human or CPU) compete with each other sending
1046 removed lines to all opponents. There is also a Demo mode in which you can
1047 watch your CPU playing while enjoying a cup of tea!")
1048 (license license:gpl2+)))
1049
1050 (define-public nethack
1051 (package
1052 (name "nethack")
1053 (version "3.6.4")
1054 (source
1055 (origin
1056 (method url-fetch)
1057 (uri
1058 (string-append "https://www.nethack.org/download/" version "/nethack-"
1059 (string-join (string-split version #\.) "") "-src.tgz"))
1060 (sha256
1061 (base32 "0ndxgnsprwgjnk0qb24iljkpijnfncgvfb3h3zb129h3cs2anc85"))))
1062 (inputs
1063 `(("ncurses" ,ncurses)
1064 ("bison" ,bison)
1065 ("flex" ,flex)
1066 ("less" ,less)))
1067 (build-system gnu-build-system)
1068 (arguments
1069 '(#:make-flags
1070 `(,(string-append "PREFIX=" (assoc-ref %outputs "out")))
1071 #:phases
1072 (modify-phases %standard-phases
1073 (add-before 'configure 'patch-paths
1074 (lambda _
1075 (substitute* "sys/unix/nethack.sh"
1076 (("^ *cd .*$") ""))
1077 (substitute* "sys/unix/Makefile.utl"
1078 (("^YACC *=.*$") "YACC = bison -y\n")
1079 (("^LEX *=.*$") "LEX = flex\n")
1080 (("^# CC = gcc") "CC = gcc"))
1081 (substitute* "sys/unix/hints/linux"
1082 (("/bin/gzip") (string-append
1083 (assoc-ref %build-inputs "gzip")
1084 "/bin/gzip"))
1085 (("^WINTTYLIB=.*") "WINTTYLIB=-lncurses"))
1086 (substitute* "include/config.h"
1087 (("^.*define CHDIR.*$") "")
1088 (("^/\\* *#*define *REPRODUCIBLE_BUILD *\\*/")
1089 ;; Honor SOURCE_DATE_EPOCH.
1090 "#define REPRODUCIBLE_BUILD"))
1091
1092 ;; Note: 'makedefs' rejects and ignores dates that are too old
1093 ;; or too new, so we must choose something reasonable here.
1094 (setenv "SOURCE_DATE_EPOCH" "1531865062")
1095
1096 (substitute* "sys/unix/Makefile.src"
1097 (("^# CC = gcc") "CC = gcc"))
1098 #t))
1099 (replace 'configure
1100 (lambda _
1101 (let ((bash (string-append
1102 (assoc-ref %build-inputs "bash")
1103 "/bin/bash")))
1104 (with-directory-excursion "sys/unix"
1105 (substitute* "setup.sh" (("/bin/sh") bash))
1106 (invoke bash "setup.sh" "hints/linux"))
1107 #t)))
1108 (add-after 'install 'fixup-paths
1109 (lambda _
1110 (let* ((output (assoc-ref %outputs "out"))
1111 (nethack-script (string-append output "/bin/nethack")))
1112 (mkdir-p (string-append output "/games/lib/nethackuserdir"))
1113 (for-each
1114 (lambda (file)
1115 (rename-file
1116 (string-append output "/games/lib/nethackdir/" file)
1117 (string-append output "/games/lib/nethackuserdir/"
1118 file)))
1119 '("xlogfile" "logfile" "perm" "record" "save"))
1120 (mkdir-p (string-append output "/bin"))
1121 (call-with-output-file nethack-script
1122 (lambda (port)
1123 (format port "#!~a/bin/sh
1124 PATH=~a:$PATH
1125 if [ ! -d ~~/.config/nethack ]; then
1126 mkdir -p ~~/.config/nethack
1127 cp -r ~a/games/lib/nethackuserdir/* ~~/.config/nethack
1128 chmod -R +w ~~/.config/nethack
1129 fi
1130
1131 RUNDIR=$(mktemp -d)
1132
1133 cleanup() {
1134 rm -rf $RUNDIR
1135 }
1136 trap cleanup EXIT
1137
1138 cd $RUNDIR
1139 for i in ~~/.config/nethack/*; do
1140 ln -s $i $(basename $i)
1141 done
1142 for i in ~a/games/lib/nethackdir/*; do
1143 ln -s $i $(basename $i)
1144 done
1145 ~a/games/nethack"
1146 (assoc-ref %build-inputs "bash")
1147 (list->search-path-as-string
1148 (list
1149 (string-append
1150 (assoc-ref %build-inputs "coreutils") "/bin")
1151 (string-append
1152 (assoc-ref %build-inputs "less") "/bin"))
1153 ":")
1154 output
1155 output
1156 output)))
1157 (chmod nethack-script #o555)
1158 #t)))
1159 (delete 'check))))
1160 (home-page "https://nethack.org")
1161 (synopsis "Classic dungeon crawl game")
1162 (description "NetHack is a single player dungeon exploration game that runs
1163 on a wide variety of computer systems, with a variety of graphical and text
1164 interfaces all using the same game engine. Unlike many other Dungeons &
1165 Dragons-inspired games, the emphasis in NetHack is on discovering the detail of
1166 the dungeon and not simply killing everything in sight - in fact, killing
1167 everything in sight is a good way to die quickly. Each game presents a
1168 different landscape - the random number generator provides an essentially
1169 unlimited number of variations of the dungeon and its denizens to be discovered
1170 by the player in one of a number of characters: you can pick your race, your
1171 role, and your gender.")
1172 (license
1173 (license:fsdg-compatible
1174 "https://nethack.org/common/license.html"))))
1175
1176 (define-public pipewalker
1177 (package
1178 (name "pipewalker")
1179 (version "0.9.4")
1180 (source
1181 (origin
1182 (method url-fetch)
1183 (uri (string-append "http://downloads.sourceforge.net/pipewalker/"
1184 "pipewalker-" version ".tar.gz"))
1185 (sha256
1186 (base32 "1x46wgk0s55562pd96cxagxkn6wpgglq779f9b64ff1k3xzp3myn"))))
1187 (build-system gnu-build-system)
1188 (arguments
1189 `(#:configure-flags
1190 (list (string-append "--docdir=" (assoc-ref %outputs "out")
1191 "/share/doc/" ,name "-" ,version))
1192 #:phases
1193 (modify-phases %standard-phases
1194 (add-after 'configure 'patch-docdir
1195 ;; Makefile.in ignores configure's ‘--docdir=...’ option. Fix that.
1196 (lambda _
1197 (substitute* "Makefile"
1198 (("(pkgdocdatadir = ).*" _ assignment)
1199 (string-append assignment "$(docdir)\n")))
1200 #t)))))
1201 (inputs
1202 `(("libpng" ,libpng)
1203 ("mesa" ,mesa)
1204 ("sdl" ,sdl)))
1205 (home-page "http://pipewalker.sourceforge.net/")
1206 (synopsis "Logical tile puzzle")
1207 (description
1208 "PipeWalker is a simple puzzle game with many diffent themes: connect all
1209 computers to one network server, bring water from a source to the taps, etc.
1210 The underlying mechanism is always the same: you must turn each tile in the
1211 grid in the right direction to combine all components into a single circuit.
1212 Every puzzle has a complete solution, although there may be more than one.")
1213 (license license:gpl3+)))
1214
1215 (define-public prboom-plus
1216 (package
1217 (name "prboom-plus")
1218 (version "2.5.1.4")
1219 (source (origin
1220 (method url-fetch)
1221 (uri (string-append "mirror://sourceforge/prboom-plus/prboom-plus/"
1222 version "/prboom-plus-" version ".tar.gz"))
1223 (sha256
1224 (base32 "151v6nign86m1a2vqz27krsccpc9m4d1jax4y43v2fa82wfj9qp0"))
1225 (modules '((guix build utils)))
1226 (snippet
1227 '(begin
1228 (substitute* "src/version.c"
1229 (("__DATE__") "")
1230 (("__TIME__") ""))
1231 #t))))
1232 (build-system gnu-build-system)
1233 (arguments
1234 '(#:configure-flags '("--disable-cpu-opt")
1235 #:make-flags `(,(string-append "gamesdir="
1236 (assoc-ref %outputs "out") "/bin"))
1237 #:phases
1238 (modify-phases %standard-phases
1239 (add-after 'set-paths 'set-sdl'paths
1240 (lambda* (#:key inputs #:allow-other-keys)
1241 (setenv "CPATH"
1242 (string-append (assoc-ref inputs "sdl-union")
1243 "/include/SDL:"
1244 (or (getenv "CPATH") "")))
1245 #t)))))
1246 (inputs
1247 `(("fluidsynth" ,fluidsynth)
1248 ("glu" ,glu)
1249 ("libmad" ,libmad)
1250 ("libpng" ,libpng)
1251 ("libvorbis" ,libvorbis)
1252 ("pcre" ,pcre)
1253 ("portmidi" ,portmidi)
1254 ("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer sdl-net)))))
1255 (home-page "http://prboom-plus.sourceforge.net/")
1256 (synopsis "Version of the classic 3D shoot'em'up game Doom")
1257 (description
1258 "PrBoom+ is a Doom source port developed from the original PrBoom project.")
1259 (license license:gpl2+)))
1260
1261 (define-public retux
1262 (package
1263 (name "retux")
1264 (version "1.3.6")
1265 (source (origin
1266 (method url-fetch)
1267 (uri (string-append "mirror://savannah/retux/"
1268 (version-major+minor version) "/retux-"
1269 version "-src.tar.gz"))
1270 (sha256
1271 (base32
1272 "01bidh4zisjp3nc436x0g85v60dvwb3ig37i7y01sa71j8fm4fmb"))))
1273 (build-system python-build-system)
1274 (arguments
1275 `(#:tests? #f ; no check target
1276 #:phases
1277 (modify-phases %standard-phases
1278 ;; no setup.py script
1279 (delete 'build)
1280 (replace 'install
1281 (lambda* (#:key outputs #:allow-other-keys)
1282 (let* ((out (assoc-ref outputs "out"))
1283 (bin (string-append out "/bin"))
1284 (data (string-append out "/share/retux"))
1285 (doc (string-append out "/share/doc/retux")))
1286 (mkdir-p bin)
1287
1288 (substitute* "retux.py"
1289 ;; Use the correct data directory.
1290 (("os\\.path\\.join\\(os\\.path\\.dirname\\(__file__\\), \"data\"\\),")
1291 (string-append "\"" data "\","))
1292 ;; Use Python 3 so the patch-shebangs phase works properly.
1293 ((".*python2.*") "#!/usr/bin/python3"))
1294
1295 (copy-file "retux.py" (string-append bin "/retux"))
1296
1297 (copy-recursively "data" data)
1298
1299 (install-file "COPYING" doc)
1300 #t))))))
1301 (inputs
1302 `(("python-sge-pygame" ,python-sge-pygame)
1303 ("python-six" ,python-six)
1304 ("python-xsge" ,python-xsge)))
1305 (home-page "http://retux.nongnu.org")
1306 (synopsis "Action platformer game")
1307 (description
1308 "ReTux is an action platformer loosely inspired by the Mario games,
1309 utilizing the art assets from the @code{SuperTux} project.")
1310 ;; GPL version 3 or later is the license for the code and some art.
1311 ;; The rest of the licenses are for the art exclusively, as listed in
1312 ;; data/LICENSES.
1313 (license (list license:cc0
1314 license:cc-by3.0
1315 license:cc-by-sa3.0
1316 license:cc-by-sa4.0
1317 license:gpl2+
1318 license:gpl3+))))
1319
1320 (define-public roguebox-adventures
1321 (package
1322 (name "roguebox-adventures")
1323 (version "2.2.1")
1324 (source
1325 (origin
1326 (method url-fetch)
1327 (uri (string-append
1328 "http://download.tuxfamily.org/rba/RogueBoxAdventures_v"
1329 (string-join (string-split version #\.) "_") "_Source.zip"))
1330 (file-name (string-append name "-" version ".zip"))
1331 (sha256
1332 (base32
1333 "0kmzdgnik8fsf3bg55546l77p3mfxn2awkzfzzdn20n82rd2babw"))))
1334 (build-system python-build-system)
1335 (arguments
1336 `(#:tests? #f ; no check target
1337 #:phases
1338 (modify-phases %standard-phases
1339 (replace 'unpack
1340 (lambda* (#:key source #:allow-other-keys)
1341 (and (invoke "unzip" source)
1342 ;; The actual source is buried a few directories deep.
1343 (chdir (string-append "RogueBoxAdventures_v"
1344 (string-join
1345 (string-split ,version #\.) "_")
1346 "_Source")))))
1347 ;; no setup.py script
1348 (replace 'build
1349 (lambda* (#:key outputs #:allow-other-keys)
1350 (let* ((out (assoc-ref outputs "out"))
1351 (data (string-append
1352 out "/share/games/roguebox-adventures")))
1353 ;; Use the correct data directory.
1354 (substitute* '("main.py" "LIB/getch.py" "LIB/getch_gcwz.py")
1355 (("basic_path + os\\.sep + 'DATA'")
1356 (string-append "'" data "'"))
1357 (("^basic_path.*$")
1358 (string-append "basic_path ='" data "'\n")))
1359 (substitute* "LIB/gra_files.py"
1360 (("basic_path = b_path\\.replace\\('/LIB',''\\)")
1361 (string-append "basic_path ='" data "'\n")))
1362
1363 ;; The game must save in the user's home directory because
1364 ;; the store is read-only.
1365 (substitute* "main.py"
1366 (("home_save = False") "home_save = True")
1367 (("'icon_small.png'")
1368 (string-append "'" data "/icon_small.png'"))))
1369 #t))
1370 (replace 'install
1371 (lambda* (#:key outputs #:allow-other-keys)
1372 (let* ((out (assoc-ref outputs "out"))
1373 (bin (string-append out "/bin"))
1374 (roguebox-adventures
1375 (string-append bin "/roguebox-adventures"))
1376 (data (string-append
1377 out "/share/games/roguebox-adventures"))
1378 (lib (string-append data "/LIB"))
1379 (doc (string-append
1380 out "/share/doc/roguebox-adventures")))
1381 (mkdir-p bin)
1382 (mkdir-p doc)
1383
1384 (for-each (lambda (file)
1385 (copy-recursively file
1386 (string-append data "/" file)))
1387 '("AUDIO" "FONT" "GRAPHIC" "LIB" "LICENSE"
1388 "icon_big.png" "icon_small.png"))
1389 (for-each (lambda (file)
1390 (chmod file #o555)
1391 (install-file file lib))
1392 '("main.py" "run.py"))
1393
1394 (copy-recursively "DOC" doc)
1395
1396 (call-with-output-file
1397 roguebox-adventures
1398 (lambda (p)
1399 (format p "\
1400 #!~a
1401 export PYTHONPATH=~a/LIB:~a
1402 exec -a \"~a\" ~a \"$@\"\n"
1403 (which "bash") data (getenv "PYTHONPATH")
1404 (which "python3")
1405 (string-append lib "/main.py"))))
1406 (chmod roguebox-adventures #o555))
1407 #t)))))
1408 (native-inputs
1409 `(("unzip" ,unzip)))
1410 (inputs
1411 `(("python-pygame" ,python-pygame)
1412 ("python-tmx" ,python-tmx)))
1413 (home-page "https://rogueboxadventures.tuxfamily.org")
1414 (synopsis "A classical roguelike/sandbox game")
1415 (description
1416 "RogueBox Adventures is a graphical roguelike with strong influences
1417 from sandbox games like Minecraft or Terraria. The main idea of RogueBox
1418 Adventures is to offer the player a kind of roguelike toy-world. This world
1419 can be explored and changed freely.")
1420 ;; The GPL3+ is for code, the rest are for art.
1421 (license (list license:cc0
1422 license:cc-by3.0
1423 license:gpl3+
1424 license:silofl1.1))))
1425
1426 (define-public xshogi
1427 (package
1428 (name "xshogi")
1429 (version "1.4.2")
1430 (source
1431 (origin
1432 (method url-fetch)
1433 (uri (string-append "mirror://gnu/gnushogi/xshogi-"
1434 version ".tar.gz"))
1435 (sha256
1436 (base32
1437 "1dns0nhymak44by18sv48m4xb2skiwbi2i3nb9hl6w9iwd2i2brf"))))
1438 (build-system gnu-build-system)
1439 (inputs
1440 `(("libxaw" ,libxaw)
1441 ("libxt" ,libxt)))
1442 (home-page "https://www.gnu.org/software/gnushogi/")
1443 (synopsis "User interface for gnushogi")
1444 (description "A graphical user interface for the package @code{gnushogi}.")
1445 ;; Contains a copy of GPLv3 but the licence notices simply
1446 ;; state "GNU General Public Licence" without specifying a version.
1447 (license license:gpl1+)))
1448
1449 (define-public abbaye
1450 (package
1451 (name "abbaye")
1452 (version "2.0.1")
1453 (source
1454 (origin
1455 (method git-fetch)
1456 (uri (git-reference
1457 (url "https://github.com/nevat/abbayedesmorts-gpl.git")
1458 (commit (string-append "v" version))))
1459 (file-name (git-file-name name version))
1460 (sha256
1461 (base32 "1pwqf7r9bqb2p3xrw9i7y8pgr1401fy3mnnqpb1qkhmdl3gqi9hb"))
1462 (modules '((guix build utils)))
1463 (snippet
1464 ;; Unbundle fonts.
1465 '(begin
1466 (delete-file-recursively "fonts")
1467 #t))))
1468 (build-system gnu-build-system)
1469 (arguments
1470 '(#:make-flags '("CC=gcc")
1471 #:phases (modify-phases %standard-phases
1472 (add-after 'set-paths 'set-sdl-paths
1473 (lambda* (#:key inputs #:allow-other-keys)
1474 (setenv "CPATH"
1475 (string-append (assoc-ref inputs "sdl-union")
1476 "/include/SDL:"
1477 (or (getenv "CPATH") "")))))
1478 (add-after 'patch-source-shebangs 'patch-makefile
1479 (lambda* (#:key outputs #:allow-other-keys)
1480 ;; Replace /usr with package output directory.
1481 (substitute* "Makefile"
1482 (("/usr") (assoc-ref outputs "out")))))
1483 (add-before 'install 'make-install-dirs
1484 (lambda* (#:key outputs #:allow-other-keys)
1485 (let ((prefix (assoc-ref outputs "out")))
1486 ;; Create directories that the makefile assumes exist.
1487 (mkdir-p (string-append prefix "/bin"))
1488 (mkdir-p (string-append prefix "/share/applications"))
1489 (mkdir-p (string-append prefix "/share/pixmaps")))))
1490 ;; No configure script.
1491 (delete 'configure))
1492 #:tests? #f)) ;; No check target.
1493 (native-inputs `(("pkg-config" ,pkg-config)))
1494 (inputs `(("sdl-union" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer)))))
1495 (home-page "https://github.com/nevat/abbayedesmorts-gpl")
1496 (synopsis "GNU/Linux port of the indie game \"l'Abbaye des Morts\"")
1497 (description "L'Abbaye des Morts is a 2D platform game set in 13th century
1498 France. The Cathars, who preach about good Christian beliefs, were being
1499 expelled by the Catholic Church out of the Languedoc region in France. One of
1500 them, called Jean Raymond, found an old church in which to hide, not knowing
1501 that beneath its ruins lay buried an ancient evil.")
1502 (license license:gpl3)))
1503
1504 (define-public l-abbaye-des-morts
1505 (deprecated-package "l-abbaye-des-morts" abbaye))
1506
1507 (define-public angband
1508 (package
1509 (name "angband")
1510 (version "4.2.0")
1511 (source
1512 (origin
1513 (method url-fetch)
1514 (uri (string-append "http://rephial.org/downloads/"
1515 (version-major+minor version)
1516 "/angband-" version ".tar.gz"))
1517 (sha256
1518 (base32
1519 "0vdm1ymm28wawp94nl1p5q3lhc0k7cnn2kkvvrkfx962gif4kqfk"))
1520 (modules '((guix build utils)))
1521 (snippet
1522 ;; So, some of the sounds/graphics/tilesets are under different
1523 ;; licenses... some of them even nonfree! This is a console-only
1524 ;; version of this package so we just remove them.
1525 ;; In the future, if someone tries to make a graphical variant of
1526 ;; this package, they can deal with that mess themselves. :)
1527 '(begin
1528 (for-each (lambda (subdir)
1529 (let ((lib-subdir (string-append "lib/" subdir)))
1530 (delete-file-recursively lib-subdir)))
1531 '("fonts" "icons" "sounds" "tiles"))
1532 (substitute* "lib/Makefile"
1533 ;; And don't try to invoke makefiles in the directories we removed.
1534 (("gamedata customize help screens fonts tiles sounds icons user")
1535 "gamedata customize help screens user"))
1536 #t))))
1537 (build-system gnu-build-system)
1538 (arguments
1539 `(#:tests? #f ; no check target
1540 #:configure-flags (list (string-append "--bindir=" %output "/bin"))
1541 #:phases
1542 (modify-phases %standard-phases
1543 (replace 'bootstrap
1544 (lambda _
1545 (substitute* "acinclude.m4"
1546 (("ncursesw5-config") "ncursesw6-config"))
1547 (invoke "sh" "autogen.sh"))))))
1548 (native-inputs
1549 `(("autoconf" ,autoconf)
1550 ("automake" ,automake)))
1551 (inputs `(("ncurses" ,ncurses)))
1552 (home-page "http://rephial.org/")
1553 (synopsis "Dungeon exploration roguelike")
1554 (description "Angband is a Classic dungeon exploration roguelike. Explore
1555 the depths below Angband, seeking riches, fighting monsters, and preparing to
1556 fight Morgoth, the Lord of Darkness.")
1557 (license license:gpl2)))
1558
1559 (define-public pingus
1560 (package
1561 (name "pingus")
1562 (version "0.7.6")
1563 (source
1564 (origin
1565 (method git-fetch)
1566 (uri (git-reference
1567 (url "https://gitlab.com/pingus/pingus.git")
1568 (commit (string-append "v" version))))
1569 (file-name (git-file-name name version))
1570 (sha256
1571 (base32
1572 "0wp06kcmknsnxz7bjnsndb8x062z7r23fb3yrnbfnj68qhz18y74"))
1573 (patches (search-patches "pingus-boost-headers.patch"
1574 "pingus-sdl-libs-config.patch"))
1575 (modules '((guix build utils)))
1576 (snippet
1577 '(begin
1578 (substitute* "src/pingus/screens/demo_session.cpp"
1579 (("#include <iostream>")
1580 ;; std::function moved to <functional> with C++ 11.
1581 ;; Remove this for versions newer than 0.7.6.
1582 "#include <iostream>\n#include <functional>"))
1583 #t))))
1584 (build-system gnu-build-system)
1585 (native-inputs `(("pkg-config" ,pkg-config)
1586 ("scons-python2" ,scons-python2)))
1587 (inputs `(("sdl" ,sdl)
1588 ("sdl-image" ,sdl-image)
1589 ("sdl-mixer" ,sdl-mixer)
1590 ("mesa" ,mesa)
1591 ("glu" ,glu)
1592 ("libpng" ,libpng)
1593 ("boost" ,boost)))
1594 (arguments
1595 '(#:make-flags (list (string-append "PREFIX=" %output))
1596 #:tests? #f ; no check target
1597 #:phases
1598 (modify-phases %standard-phases
1599 (delete 'configure)))) ; no configure script
1600 (home-page "https://pingus.seul.org/")
1601 (synopsis "Lemmings clone")
1602 (description
1603 "Pingus is a free Lemmings-like puzzle game in which the player takes
1604 command of a bunch of small animals and has to guide them through levels.
1605 Since the animals walk on their own, the player can only influence them by
1606 giving them commands, like build a bridge, dig a hole, or redirect all animals
1607 in the other direction. Multiple such commands are necessary to reach the
1608 level's exit. The game is presented in a 2D side view.")
1609 ;; Some source files are under bsd-3 and gpl2+ licenses.
1610 (license license:gpl3+)))
1611
1612 (define-public talkfilters
1613 (package
1614 (name "talkfilters")
1615 (version "2.3.8")
1616 (source
1617 (origin
1618 (method url-fetch)
1619 (uri (string-append "http://www.hyperrealm.com/" name "/"
1620 name "-" version ".tar.gz"))
1621 (sha256
1622 (base32 "19nc5vq4bnkjvhk8srqddzhcs93jyvpm9r6lzjzwc1mgf08yg0a6"))))
1623 (build-system gnu-build-system)
1624 (home-page "https://www.gnu.org/software/talkfilters/")
1625 (synopsis "Convert English text to humorous dialects")
1626 (description "The GNU Talk Filters are programs that convert English text
1627 into stereotyped or otherwise humorous dialects. The filters are provided as
1628 a C library, so they can easily be integrated into other programs.")
1629 (license license:gpl2+)))
1630
1631 (define-public cmatrix
1632 (package
1633 (name "cmatrix")
1634 (version "2.0")
1635 (source
1636 (origin
1637 (method git-fetch)
1638 (uri (git-reference
1639 (url "https://github.com/abishekvashok/cmatrix.git")
1640 (commit (string-append "v" version))))
1641 (file-name (git-file-name name version))
1642 (sha256
1643 (base32
1644 "1h9jz4m4s5l8c3figaq46ja0km1gimrkfxm4dg7mf4s84icmasbm"))))
1645 (build-system gnu-build-system)
1646 (native-inputs
1647 `(("autoconf" ,autoconf)
1648 ("automake" ,automake)))
1649 (arguments
1650 '(#:phases
1651 (modify-phases %standard-phases
1652 (replace 'configure
1653 (lambda* (#:key outputs #:allow-other-keys)
1654 ;; This old ‘configure’ script doesn't support
1655 ;; variables passed as arguments.
1656 (let ((out (assoc-ref outputs "out")))
1657 (setenv "CONFIG_SHELL" (which "bash"))
1658 (invoke "./configure"
1659 (string-append "--prefix=" out))))))))
1660 (inputs `(("ncurses" ,ncurses)))
1661 (home-page "http://www.asty.org/cmatrix")
1662 (synopsis "Simulate the display from \"The Matrix\"")
1663 (description "CMatrix simulates the display from \"The Matrix\" and is
1664 based on the screensaver from the movie's website. It works with terminal
1665 settings up to 132x300 and can scroll lines all at the same rate or
1666 asynchronously and at a user-defined speed.")
1667 (license license:gpl2+)))
1668
1669 (define-public chess
1670 (package
1671 (name "chess")
1672 (version "6.2.5")
1673 (source
1674 (origin
1675 (method url-fetch)
1676 (uri (string-append "mirror://gnu/chess/gnuchess-" version
1677 ".tar.gz"))
1678 (sha256
1679 (base32
1680 "00j8s0npgfdi41a0mr5w9qbdxagdk2v41lcr42rwl1jp6miyk6cs"))))
1681 (build-system gnu-build-system)
1682 (home-page "https://www.gnu.org/software/chess/")
1683 (synopsis "Full chess implementation")
1684 (description "GNU Chess is a chess engine. It allows you to compete
1685 against the computer in a game of chess, either through the default terminal
1686 interface or via an external visual interface such as GNU XBoard.")
1687 (license license:gpl3+)))
1688
1689 (define freedink-engine
1690 (package
1691 (name "freedink-engine")
1692 (version "109.6")
1693 (source (origin
1694 (method url-fetch)
1695 (uri (string-append "mirror://gnu/freedink/freedink-" version
1696 ".tar.gz"))
1697 (sha256
1698 (base32
1699 "00hhk1bjdrc1np2qz44sa5n1mb62qzwxbvsnws3vpms6iyn3a2sy"))))
1700 (build-system gnu-build-system)
1701 (arguments
1702 `(#:configure-flags '("--disable-embedded-resources")
1703 #:phases
1704 (modify-phases %standard-phases
1705 (add-after 'unpack 'disable-graphical-tests
1706 (lambda _
1707 ;; These tests require a graphical interface.
1708 (substitute* "src/Makefile.am"
1709 (("test_gfx_fonts TestIOGfxDisplay") ""))
1710 #t)))))
1711 (native-inputs `(("autoconf" ,autoconf)
1712 ("automake" ,automake)
1713 ("cxxtest" ,cxxtest)
1714 ("gettext" ,gettext-minimal)
1715 ("help2man" ,help2man)
1716 ("pkg-config" ,pkg-config)))
1717 (inputs `(("sdl-union" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer
1718 sdl2-ttf sdl2-gfx)))
1719 ("fontconfig" ,fontconfig)
1720 ("glm" ,glm)))
1721 (properties '((ftp-directory . "/freedink")
1722 (upstream-name . "freedink")))
1723 (home-page "https://www.gnu.org/software/freedink/")
1724 (synopsis "Twisted adventures of young pig farmer Dink Smallwood")
1725 (description
1726 "GNU FreeDink is a free and portable re-implementation of the engine
1727 for the role-playing game Dink Smallwood. It supports not only the original
1728 game data files but it also supports user-produced game mods or \"D-Mods\".
1729 To that extent, it also includes a front-end for managing all of your D-Mods.")
1730 (license license:gpl3+)))
1731
1732 (define freedink-data
1733 (package
1734 (name "freedink-data")
1735 (version "1.08.20190120")
1736 (source (origin
1737 (method url-fetch)
1738 (uri (string-append "mirror://gnu/freedink/freedink-data-"
1739 version ".tar.gz"))
1740 (sha256
1741 (base32
1742 "17gvryadlxk172mblbsil7hina1z5wahwaxnr6g3mdq57dvl8pvi"))))
1743 (build-system gnu-build-system)
1744 (arguments
1745 `(#:phases
1746 (modify-phases %standard-phases
1747 (delete 'configure) ; no configure script
1748 (delete 'check)) ; no tests
1749 #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
1750 (properties '((ftp-directory . "/freedink")))
1751 (home-page "https://www.gnu.org/software/freedink/")
1752 (synopsis "Game data for GNU Freedink")
1753 (description
1754 "This package contains the game data of GNU Freedink.")
1755 (license license:gpl3+)))
1756
1757 (define-public freedink-dfarc
1758 (package
1759 (name "freedink-dfarc")
1760 (version "3.14")
1761 (source (origin
1762 (method url-fetch)
1763 (uri (string-append "mirror://gnu/freedink/dfarc-"
1764 version ".tar.gz"))
1765 (sha256
1766 (base32
1767 "1yp8n3w426xnlp10xk06vfi2y3k9xrcfyck7s7qs1v0ys7n284d5"))))
1768 (build-system gnu-build-system)
1769 (native-inputs
1770 `(("intltool" ,intltool)))
1771 (inputs
1772 `(("bzip2" ,bzip2)
1773 ("wxwidgets" ,wxwidgets)))
1774 (properties '((ftp-directory . "/freedink")
1775 (upstream-name . "dfarc")))
1776 (home-page "https://www.gnu.org/software/freedink/")
1777 (synopsis "Front-end for managing and playing Dink Modules")
1778 (description "DFArc makes it easy to play and manage the GNU FreeDink game
1779 and its numerous D-Mods.")
1780 (license license:gpl3+)))
1781
1782 (define-public freedink
1783 ;; This is a wrapper that tells the engine where to find the data.
1784 (package (inherit freedink-engine)
1785 (name "freedink")
1786 (build-system trivial-build-system)
1787 (arguments
1788 '(#:builder (begin
1789 (use-modules (guix build utils))
1790
1791 (let* ((output (assoc-ref %outputs "out"))
1792 (bin (string-append output "/bin"))
1793 (executable (string-append bin "/freedink")))
1794 (mkdir-p bin)
1795 (call-with-output-file executable
1796 (lambda (port)
1797 (format port "#!~a/bin/sh
1798 exec ~a/bin/freedink -refdir ~a/share/dink\n"
1799 (assoc-ref %build-inputs "bash")
1800 (assoc-ref %build-inputs "engine")
1801 (assoc-ref %build-inputs "data"))
1802 (chmod port #o777)))
1803 #t))
1804 #:modules ((guix build utils))))
1805 (inputs `(("engine" ,freedink-engine)
1806 ("data" ,freedink-data)
1807 ("bash" ,bash)))
1808 (native-inputs '())))
1809
1810 (define-public xboard
1811 (package
1812 (name "xboard")
1813 (version "4.9.1")
1814 (source
1815 (origin
1816 (method url-fetch)
1817 (uri (string-append "mirror://gnu/xboard/xboard-" version
1818 ".tar.gz"))
1819 (sha256
1820 (base32
1821 "1mkh36xnnacnz9r00b5f9ld9309k32jv6mcavklbdnca8bl56bib"))))
1822 (build-system gnu-build-system)
1823 (inputs
1824 `(("gtk+" ,gtk+-2)
1825 ("librsvg" ,librsvg)))
1826 (native-inputs
1827 `(("texinfo" ,texinfo)
1828 ("pkg-config" ,pkg-config)))
1829 (home-page "https://www.gnu.org/software/xboard/")
1830 (synopsis "Graphical user interface for chess programs")
1831 (description "GNU XBoard is a graphical board for all varieties of chess,
1832 including international chess, xiangqi (Chinese chess), shogi (Japanese chess)
1833 and Makruk. Several lesser-known variants are also supported. It presents a
1834 fully interactive graphical interface and it can load and save games in the
1835 Portable Game Notation.")
1836 (license license:gpl3+)))
1837
1838 (define-public gtypist
1839 (package
1840 (name "gtypist")
1841 (version "2.9.5")
1842 (source (origin
1843 (method url-fetch)
1844 (uri (string-append "mirror://gnu/gtypist/gtypist-"
1845 version ".tar.xz"))
1846 (sha256
1847 (base32
1848 "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1"))
1849 (modules '((guix build utils)))
1850 (snippet
1851 ;; We do not provide `ncurses.h' within an `ncursesw'
1852 ;; sub-directory, so patch the source accordingly. See
1853 ;; <http://bugs.gnu.org/19018>.
1854 '(begin
1855 (for-each (lambda (file)
1856 (substitute* file
1857 (("ncursesw/ncurses.h")
1858 "ncurses.h")))
1859 (find-files "." "configure$|\\.c$"))
1860 #t))))
1861 (build-system gnu-build-system)
1862 (inputs `(("ncurses" ,ncurses)
1863 ("perl" ,perl)))
1864 (home-page "https://www.gnu.org/software/gtypist/")
1865 (synopsis "Typing tutor")
1866 (description
1867 "GNU Typist is a universal typing tutor. It can be used to learn and
1868 practice touch-typing. Several tutorials are included; in addition to
1869 tutorials for the standard QWERTY layout, there are also tutorials for the
1870 alternative layouts Dvorak and Colemak, as well as for the numpad. Tutorials
1871 are primarily in English, however some in other languages are provided.")
1872 (license license:gpl3+)))
1873
1874 (define-public irrlicht
1875 (package
1876 (name "irrlicht")
1877 (version "1.8.4")
1878 (source (origin
1879 (method url-fetch)
1880 (uri (string-append
1881 "mirror://sourceforge/irrlicht/Irrlicht%20SDK/"
1882 (version-major+minor version)
1883 "/" version "/irrlicht-" version ".zip"))
1884 (sha256
1885 (base32
1886 "0cz4z4dwrv5ypl19ll67wl6jjpy5k6ly4vr042w4br88qq5jhazl"))
1887 (patches (search-patches "irrlicht-use-system-libs.patch"))
1888 (modules '((guix build utils)))
1889 (snippet
1890 '(begin
1891 (for-each delete-file-recursively
1892 '("bin" ; bundled compiled Windows binaries"
1893 "source/Irrlicht/MacOSX"
1894 "source/Irrlicht/bzip2"
1895 "source/Irrlicht/jpeglib"
1896 "source/Irrlicht/libpng"
1897 "source/Irrlicht/lzma"
1898 "source/Irrlicht/zlib"))
1899 (delete-file "source/Irrlicht/glext.h")
1900 (delete-file "source/Irrlicht/glxext.h")
1901 (delete-file "source/Irrlicht/wglext.h")
1902 #t))))
1903 (build-system gnu-build-system)
1904 (arguments
1905 `(#:phases
1906 (modify-phases %standard-phases
1907 (add-after 'unpack 'chdir-to-source
1908 (lambda _
1909 ;; The actual source is buried a few directories deep.
1910 (chdir "source/Irrlicht/")
1911 #t))
1912 (add-after 'chdir-to-source 'fix-build-env
1913 (lambda* (#:key outputs #:allow-other-keys)
1914 (let ((out (assoc-ref outputs "out")))
1915 (substitute* "Makefile"
1916 (("INSTALL_DIR = /usr/local/lib")
1917 (string-append "INSTALL_DIR = " out "/lib"))
1918 ;; Add '-fpermissive' to the CXXFLAGS
1919 (("-Wall") "-Wall -fpermissive")) ; CImageLoaderJPG.cpp
1920 ;; The Makefile assumes these directories exist.
1921 (mkdir-p (string-append out "/lib"))
1922 (mkdir-p (string-append out "/include")))))
1923 (delete 'configure)) ; no configure script
1924 #:tests? #f ; no check target
1925 #:make-flags '("CC=gcc" "sharedlib")))
1926 (inputs
1927 `(("bzip2" ,bzip2)
1928 ("libjpeg" ,libjpeg)
1929 ("libpng" ,libpng)
1930 ("libx11" ,libx11)
1931 ("libxxf86vm" ,libxxf86vm)
1932 ("mesa" ,mesa)))
1933 (synopsis "3D game engine written in C++")
1934 (description
1935 "The Irrlicht Engine is a high performance realtime 3D engine written in
1936 C++. Features include an OpenGL renderer, extensible materials, scene graph
1937 management, character animation, particle and other special effects, support
1938 for common mesh file formats, and collision detection.")
1939 (home-page "http://irrlicht.sourceforge.net/")
1940 (license license:zlib)))
1941
1942 (define-public mars
1943 ;; The latest release on SourceForge relies on an unreleased version of SFML
1944 ;; with a different API, so we take the latest version from the official
1945 ;; repository on Github.
1946 (let ((commit "c855d044094a1d92317e38935d81ba938946132e")
1947 (revision "1"))
1948 (package
1949 (name "mars")
1950 (version (string-append "0.7.5." revision "." (string-take commit 7) ))
1951 (source (origin
1952 (method git-fetch)
1953 (uri (git-reference
1954 (url "https://github.com/thelaui/M.A.R.S..git")
1955 (commit commit)))
1956 (file-name (git-file-name name version))
1957 (sha256
1958 (base32
1959 "1r4c5gap1z2zsv4yjd34qriqkxaq4lb4rykapyzkkdf4g36lc3nh"))
1960 (patches (search-patches "mars-sfml-2.3.patch"
1961 "mars-install.patch"))))
1962 (build-system cmake-build-system)
1963 (arguments
1964 `(#:tests? #f ; There are no tests
1965 #:phases
1966 (modify-phases %standard-phases
1967 (add-after 'unpack 'fix-install-path
1968 (lambda _
1969 (substitute* "src/CMakeLists.txt"
1970 (("\\$\\{CMAKE_INSTALL_PREFIX\\}/games")
1971 "${CMAKE_INSTALL_PREFIX}/bin"))
1972 #t))
1973 (add-after 'unpack 'fix-data-path
1974 (lambda* (#:key outputs #:allow-other-keys)
1975 (substitute* "src/System/settings.cpp"
1976 (("C_dataPath = \"./data/\";")
1977 (string-append "C_dataPath = \""
1978 (assoc-ref outputs "out")
1979 "/share/games/marsshooter/\";")))
1980 #t)))))
1981 (inputs
1982 `(("mesa" ,mesa)
1983 ("fribidi" ,fribidi)
1984 ("taglib" ,taglib)
1985 ("sfml" ,sfml)))
1986 (home-page "http://marsshooter.org")
1987 (synopsis "2D space shooter")
1988 (description
1989 "M.A.R.S. is a 2D space shooter with pretty visual effects and
1990 attractive physics. Players can battle each other or computer controlled
1991 enemies in different game modes such as space ball, death match, team death
1992 match, cannon keep, and grave-itation pit.")
1993 (license license:gpl3+))))
1994
1995 (define minetest-data
1996 (package
1997 (name "minetest-data")
1998 (version "5.1.1")
1999 (source (origin
2000 (method git-fetch)
2001 (uri (git-reference
2002 (url "https://github.com/minetest/minetest_game")
2003 (commit version)))
2004 (file-name (git-file-name name version))
2005 (sha256
2006 (base32
2007 "1r9fxz2j24q74a9injvbxbf2xk67fzabv616i676zw2cvgv9hn39"))))
2008 (build-system trivial-build-system)
2009 (native-inputs
2010 `(("source" ,source)))
2011 (arguments
2012 `(#:modules ((guix build utils))
2013 #:builder (begin
2014 (use-modules (guix build utils))
2015 (let ((install-dir (string-append
2016 %output
2017 "/share/minetest/games/minetest_game")))
2018 (mkdir-p install-dir)
2019 (copy-recursively
2020 (assoc-ref %build-inputs "source")
2021 install-dir)
2022 #t))))
2023 (synopsis "Main game data for the Minetest game engine")
2024 (description
2025 "Game data for the Minetest infinite-world block sandbox game.")
2026 (home-page "https://www.minetest.net/")
2027 (license license:lgpl2.1+)))
2028
2029 (define-public minetest
2030 (package
2031 (name "minetest")
2032 (version "5.1.1")
2033 (source (origin
2034 (method git-fetch)
2035 (uri (git-reference
2036 (url "https://github.com/minetest/minetest")
2037 (commit version)))
2038 (file-name (git-file-name name version))
2039 (sha256
2040 (base32
2041 "0cjj63333b7j4ydfq0h9yc6d2jvmyjd7n7zbd08yrf0rcibrj2k0"))
2042 (modules '((guix build utils)))
2043 (snippet
2044 '(begin
2045 ;; Delete bundled libraries.
2046 (delete-file-recursively "lib")
2047 #t))))
2048 (build-system cmake-build-system)
2049 (arguments
2050 '(#:configure-flags
2051 (list "-DRUN_IN_PLACE=0"
2052 "-DENABLE_FREETYPE=1"
2053 "-DENABLE_GETTEXT=1"
2054 "-DENABLE_SYSTEM_JSONCPP=TRUE"
2055 (string-append "-DIRRLICHT_INCLUDE_DIR="
2056 (assoc-ref %build-inputs "irrlicht")
2057 "/include/irrlicht")
2058 (string-append "-DCURL_INCLUDE_DIR="
2059 (assoc-ref %build-inputs "curl")
2060 "/include/curl"))
2061 #:tests? #f)) ;no check target
2062 (native-search-paths
2063 (list (search-path-specification
2064 (variable "MINETEST_SUBGAME_PATH")
2065 (files '("share/minetest/games")))))
2066 (native-inputs
2067 `(("pkg-config" ,pkg-config)))
2068 (inputs
2069 `(("curl" ,curl)
2070 ("freetype" ,freetype)
2071 ("gettext" ,gettext-minimal)
2072 ("gmp" ,gmp)
2073 ("irrlicht" ,irrlicht)
2074 ("jsoncpp" ,jsoncpp)
2075 ("libjpeg" ,libjpeg)
2076 ("libpng" ,libpng)
2077 ("libogg" ,libogg)
2078 ("libvorbis" ,libvorbis)
2079 ("libxxf86vm" ,libxxf86vm)
2080 ("luajit" ,luajit)
2081 ("mesa" ,mesa)
2082 ("ncurses" ,ncurses)
2083 ("openal" ,openal)
2084 ("sqlite" ,sqlite)))
2085 (propagated-inputs
2086 `(("minetest-data" ,minetest-data)))
2087 (synopsis "Infinite-world block sandbox game")
2088 (description
2089 "Minetest is a sandbox construction game. Players can create and destroy
2090 various types of blocks in a three-dimensional open world. This allows
2091 forming structures in every possible creation, on multiplayer servers or as a
2092 single player. Mods and texture packs allow players to personalize the game
2093 in different ways.")
2094 (home-page "https://www.minetest.net/")
2095 (license license:lgpl2.1+)))
2096
2097 (define glkterm
2098 (package
2099 (name "glkterm")
2100 (version "1.0.4")
2101 (source
2102 (origin
2103 (method url-fetch)
2104 (uri (string-append "http://www.ifarchive.org/if-archive/programming/"
2105 "glk/implementations/glkterm-104.tar.gz"))
2106 (sha256
2107 (base32
2108 "0zlj9nlnkdlvgbiliczinirqygiq8ikg5hzh5vgcmnpg9pvnwga7"))))
2109 (build-system gnu-build-system)
2110 (propagated-inputs `(("ncurses" ,ncurses))) ; required by Make.glkterm
2111 (arguments
2112 '(#:tests? #f ; no check target
2113 #:phases
2114 (modify-phases %standard-phases
2115 (replace 'install
2116 (lambda* (#:key outputs #:allow-other-keys)
2117 (let* ((out (assoc-ref outputs "out"))
2118 (inc (string-append out "/include"))
2119 (lib (string-append out "/lib")))
2120 (for-each
2121 (lambda (file)
2122 (install-file file inc))
2123 '("glk.h" "glkstart.h" "gi_blorb.h" "gi_dispa.h" "Make.glkterm"))
2124 (install-file "libglkterm.a" lib))
2125 #t))
2126 (delete 'configure)))) ; no configure script
2127 (home-page "http://www.eblong.com/zarf/glk/")
2128 (synopsis "Curses Implementation of the Glk API")
2129 (description
2130 "Glk defines a portable API for applications with text UIs. It was
2131 primarily designed for interactive fiction, but it should be suitable for many
2132 interactive text utilities, particularly those based on a command line.
2133 This is an implementation of the Glk library which runs in a terminal window,
2134 using the @code{curses.h} library for screen control.")
2135 (license (license:fsf-free "file://README"))))
2136
2137 (define-public glulxe
2138 (package
2139 (name "glulxe")
2140 (version "0.5.4")
2141 (source
2142 (origin
2143 (method url-fetch)
2144 (uri (string-append "http://www.ifarchive.org/if-archive/programming/"
2145 "glulx/interpreters/glulxe/glulxe-054.tar.gz"))
2146 (sha256
2147 (base32
2148 "0vipydg6ra90yf9b3ipgppwxyb2xdhcxwvirgjy0v20wlf56zhhz"))))
2149 (build-system gnu-build-system)
2150 (inputs `(("glk" ,glkterm)))
2151 (arguments
2152 '(#:tests? #f ; no check target
2153 #:make-flags
2154 (let* ((glk (assoc-ref %build-inputs "glk")))
2155 (list (string-append "GLKINCLUDEDIR=" glk "/include")
2156 (string-append "GLKLIBDIR=" glk "/lib")
2157 (string-append "GLKMAKEFILE=" "Make.glkterm")))
2158 #:phases
2159 (modify-phases %standard-phases
2160 (replace 'install
2161 (lambda* (#:key outputs #:allow-other-keys)
2162 (let* ((out (assoc-ref outputs "out"))
2163 (bin (string-append out "/bin")))
2164 (install-file "glulxe" bin))
2165 #t))
2166 (delete 'configure)))) ; no configure script
2167 (home-page "https://www.eblong.com/zarf/glulx/")
2168 (synopsis "Interpreter for Glulx VM")
2169 (description
2170 "Glulx is a 32-bit portable virtual machine intended for writing and
2171 playing interactive fiction. It was designed by Andrew Plotkin to relieve
2172 some of the restrictions in the venerable Z-machine format. This is the
2173 reference interpreter, using the Glk API.")
2174 (license license:expat)))
2175
2176 (define-public fifechan
2177 (package
2178 (name "fifechan")
2179 (version "0.1.5")
2180 (source (origin
2181 (method url-fetch)
2182 (uri (string-append "https://codeload.github.com/fifengine/"
2183 "fifechan/tar.gz/" version))
2184 (file-name (string-append name "-" version ".tar.gz"))
2185 (sha256
2186 (base32
2187 "0wxs9vz5x9y8chghd8vp7vfk089lfb0qnzggi17zrqkrngs5zgi9"))))
2188 (build-system cmake-build-system)
2189 (inputs
2190 `(("sdl2" ,sdl2)
2191 ("sdl2-image" ,sdl2-image)
2192 ("mesa" ,mesa)))
2193 (arguments
2194 '(#:tests? #f)) ; No included tests
2195 (home-page "https://fifengine.github.io/fifechan/")
2196 (synopsis "Cross platform GUI library specifically for games")
2197 (description
2198 "Fifechan is a lightweight cross platform GUI library written in C++
2199 specifically designed for games. It has a built in set of extendable GUI
2200 Widgets, and allows users to create more.")
2201 (license license:lgpl2.1+)))
2202
2203 (define-public fifengine
2204 (package
2205 (name "fifengine")
2206 (version "0.4.2")
2207 (source (origin
2208 (method url-fetch)
2209 (uri (string-append "https://codeload.github.com/fifengine/"
2210 "fifengine/tar.gz/" version))
2211 (file-name (string-append name "-" version ".tar.gz"))
2212 (sha256
2213 (base32
2214 "1y4grw25cq5iqlg05rnbyxw1njl11ypidnlsm3qy4sm3xxdvb0p8"))))
2215 (build-system cmake-build-system)
2216 (arguments
2217 `(#:tests? #f ; TODO The test running fails to run some tests.
2218 #:modules ((srfi srfi-1)
2219 (guix build cmake-build-system)
2220 (guix build utils))
2221 #:configure-flags
2222 (list
2223 (string-append "-DOPENALSOFT_INCLUDE_DIR="
2224 (assoc-ref %build-inputs "openal")
2225 "/include/AL")
2226 (string-append "-DPYTHON_SITE_PACKAGES="
2227 (assoc-ref %outputs "out")
2228 "/lib/python3.7/site-packages"))
2229 #:phases
2230 (modify-phases %standard-phases
2231 (add-after 'unpack 'patch-run_tests.py
2232 (lambda _
2233 ;; Patch the test runner to exit with a status of 1 if any test
2234 ;; fails, to allow detecting failures.
2235 (substitute* "run_tests.py"
2236 (("ERROR\\. One or more tests failed!'\\)")
2237 "ERROR. One or more tests failed!')
2238 \t\texit(1)"))
2239 #t))
2240 ;; Run tests after installation so that we can make use of the built
2241 ;; python modules.
2242 (delete 'check)
2243 (add-after 'install 'check
2244 (lambda* (#:key inputs outputs tests? #:allow-other-keys)
2245 (define python-version
2246 (let* ((version (last (string-split
2247 (assoc-ref inputs "python")
2248 #\-)))
2249 (components (string-split version #\.))
2250 (major+minor (take components 2)))
2251 (string-join major+minor ".")))
2252
2253 (when tests?
2254 ;; Set PYTHONPATH so that python finds the installed modules.
2255 (setenv "PYTHONPATH"
2256 (string-append (getenv "PYTHONPATH") ":"
2257 (assoc-ref outputs "out")
2258 "/lib/python"
2259 python-version
2260 "/site-packages"))
2261 ;; The tests require an X server.
2262 (system "Xvfb :1 &")
2263 (setenv "DISPLAY" ":1")
2264 (setenv "XDG_RUNTIME_DIR" "/tmp")
2265 ;; Run tests
2266 (chdir ,(string-append "../" name "-" version))
2267 (invoke "python3" "run_tests.py" "-a"))
2268 #t)))))
2269 (inputs
2270 `(("sdl2" ,sdl2)
2271 ("sdl2-image" ,sdl2-image)
2272 ("sdl2-ttf" ,sdl2-ttf)
2273 ("tinyxml" ,tinyxml)
2274 ("openal" ,openal)
2275 ("libogg" ,libogg)
2276 ("glew" ,glew)
2277 ("libvorbis" ,libvorbis)
2278 ("boost" ,boost)
2279 ("fifechan" ,fifechan)
2280 ("swig" ,swig)
2281 ("python" ,python)))
2282 (native-inputs
2283 `(("python" ,python)
2284 ("swig" ,swig)
2285 ("xvfb" ,xorg-server)))
2286 (propagated-inputs
2287 `(("python-future" ,python-future)))
2288 (home-page "https://www.fifengine.net/")
2289 (synopsis "FIFE is a multi-platform isometric game engine written in C++")
2290 (description
2291 "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform
2292 isometric game engine. Python bindings are included allowing users to create
2293 games using Python as well as C++.")
2294 (license license:lgpl2.1+)))
2295
2296 (define-public fizmo
2297 (package
2298 (name "fizmo")
2299 (version "0.8.5")
2300 (source (origin
2301 (method url-fetch)
2302 (uri (string-append "https://fizmo.spellbreaker.org/source/"
2303 "fizmo-" version ".tar.gz"))
2304 (sha256
2305 (base32
2306 "1amyc4n41jf08kxmdgkk30bzzx54miaxa97w28f417qwn8lrl98w"))))
2307 (build-system gnu-build-system)
2308 (arguments
2309 '(#:configure-flags
2310 (let ((libjpeg (assoc-ref %build-inputs "libjpeg"))
2311 (ncurses (assoc-ref %build-inputs "ncurses")))
2312 (list (string-append "--with-jpeg-includedir=" libjpeg "/include")))))
2313 (native-inputs
2314 `(("pkg-config" ,pkg-config)))
2315 (inputs
2316 `(("freetype" ,freetype)
2317 ("libjpeg" ,libjpeg)
2318 ("libpng" ,libpng)
2319 ("libsndfile" ,libsndfile)
2320 ("libxml2" ,libxml2)
2321 ("ncurses" ,ncurses)
2322 ("sdl2" ,sdl2)))
2323 (home-page "https://fizmo.spellbreaker.org/")
2324 (synopsis "Z-machine interpreter")
2325 (description
2326 "Fizmo is a console-based Z-machine interpreter. It is used to play
2327 interactive fiction, also known as text adventures, which were implemented
2328 either by Infocom or created using the Inform compiler.")
2329 (license license:bsd-3)))
2330
2331 (define-public gnugo
2332 (package
2333 (name "gnugo")
2334 (version "3.8")
2335 (source (origin
2336 (method url-fetch)
2337 (uri (string-append "mirror://gnu/gnugo/gnugo-" version
2338 ".tar.gz"))
2339 (sha256
2340 (base32
2341 "0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s"))))
2342 (build-system gnu-build-system)
2343 (inputs `(("readline" ,readline)))
2344 (synopsis "Play the game of Go")
2345 (description
2346 "GNU Go is a program that plays the game of Go, in which players
2347 place stones on a grid to form territory or capture other stones. While
2348 it can be played directly from the terminal, rendered in ASCII characters,
2349 it is also possible to play GNU Go with 3rd party graphical interfaces or
2350 even in Emacs. It supports the standard game storage format (SGF, Smart
2351 Game Format) and inter-process communication format (GMP, Go Modem
2352 Protocol).")
2353 (home-page "https://www.gnu.org/software/gnugo/")
2354 (license license:gpl3+)))
2355
2356 (define-public extremetuxracer
2357 (package
2358 (name "extremetuxracer")
2359 (version "0.7.5")
2360 (source (origin
2361 (method url-fetch)
2362 (uri (string-append
2363 "mirror://sourceforge/extremetuxracer/releases/"
2364 version "/etr-" version ".tar.xz"))
2365 (sha256
2366 (base32
2367 "1ly63316c07i0gyqqmyzsyvygsvygn0fpk3bnbg25fi6li99rlsg"))))
2368 (build-system gnu-build-system)
2369 (native-inputs
2370 `(("pkg-config" ,pkg-config)))
2371 (inputs
2372 `(("glu" ,glu)
2373 ("sfml" ,sfml)))
2374 (synopsis "High-speed arctic racing game based on Tux Racer")
2375 ;; Snarfed straight from Debian.
2376 (description "Extreme Tux Racer, or etracer as it is called for short, is
2377 a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the
2378 game is to slide down a snow- and ice-covered mountain as quickly as possible,
2379 avoiding the trees and rocks that will slow you down.
2380
2381 Collect herrings and other goodies while sliding down the hill, but avoid fish
2382 bones.
2383
2384 This game is based on the GPL version of the famous game TuxRacer.")
2385 (home-page "https://sourceforge.net/projects/extremetuxracer/")
2386 (license license:gpl2+)))
2387
2388 (define-public supertuxkart
2389 (package
2390 (name "supertuxkart")
2391 (version "1.1")
2392 (source
2393 (origin
2394 (method url-fetch)
2395 (uri (string-append "mirror://sourceforge/supertuxkart/SuperTuxKart/"
2396 version "/supertuxkart-" version "-src.tar.xz"))
2397 (sha256
2398 (base32
2399 "1s0ai07g3sswck9mr0142989mrgzzq1njc1qxk5als5b245jpc79"))
2400 (modules '((guix build utils)))
2401 (snippet
2402 ;; Delete bundled library sources
2403 '(begin
2404 ;; Supertuxkart uses modified versions of the Irrlicht engine
2405 ;; and the bullet library. The developers gave an explanation
2406 ;; here: http://forum.freegamedev.net/viewtopic.php?f=17&t=3906
2407 ;; FIXME: try to unbundle angelscript and libraqm
2408 (for-each delete-file-recursively
2409 '("lib/zlib"
2410 "lib/libpng"
2411 "lib/jpeglib"
2412 "lib/glew"
2413 "lib/wiiuse"
2414 "lib/enet"))
2415 #t))))
2416 (build-system cmake-build-system)
2417 (arguments
2418 `(#:tests? #f ; no check target
2419 #:configure-flags
2420 (list "-DUSE_WIIUSE=0"
2421 ;; Do not use the bundled zlib, glew and enet.
2422 "-DNO_IRR_COMPILE_WITH_ZLIB_=TRUE"
2423 "-DUSE_SYSTEM_GLEW=TRUE"
2424 "-DUSE_SYSTEM_ENET=TRUE"
2425 ;; In order to use the system ENet library, IPv6 support (added in
2426 ;; SuperTuxKart version 1.1) must be disabled.
2427 "-DUSE_IPV6=FALSE"
2428 ;; FIXME: needs libopenglrecorder
2429 "-DBUILD_RECORDER=0"
2430 ;; Irrlicht returns an integer instead of a boolean
2431 "-DCMAKE_C_FLAGS=-fpermissive")))
2432 (inputs
2433 `(("glew" ,glew)
2434 ("zlib" ,zlib)
2435 ("openal" ,openal)
2436 ("libvorbis" ,libvorbis)
2437 ("freetype" ,freetype)
2438 ("fribidi" ,fribidi)
2439 ("harfbuzz" ,harfbuzz)
2440 ("mesa" ,mesa)
2441 ("libx11" ,libx11)
2442 ("libxrandr" ,libxrandr)
2443 ("curl" ,curl)
2444 ;; The following input is needed to build the bundled and modified
2445 ;; version of irrlicht.
2446 ("libjpeg" ,libjpeg)
2447 ("openssl" ,openssl)
2448 ("enet" ,enet)))
2449 (native-inputs
2450 `(("pkg-config" ,pkg-config)))
2451 (home-page "https://supertuxkart.net/Main_Page")
2452 (synopsis "3D kart racing game")
2453 (description "SuperTuxKart is a 3D kart racing game, with a focus on
2454 having fun over realism. You can play with up to 4 friends on one PC, racing
2455 against each other or just trying to beat the computer; single-player mode is
2456 also available.")
2457 (license license:gpl3+)))
2458
2459 (define-public unknown-horizons
2460 (package
2461 (name "unknown-horizons")
2462 (version "2019.1")
2463 (source (origin
2464 (method url-fetch)
2465 (uri (string-append "https://codeload.github.com/unknown-horizons/"
2466 "unknown-horizons/tar.gz/" version))
2467 (file-name (string-append name "-" version ".tar.gz"))
2468 (sha256
2469 (base32
2470 "1n747p7h0qp48szgp262swg0xh8kxy1bw8ag1qczs4i26hyzs5x4"))))
2471 (build-system python-build-system)
2472 (arguments
2473 '(#:phases
2474 (modify-phases %standard-phases
2475 (add-before 'build 'set-HOME
2476 (lambda _
2477 (setenv "HOME" "/tmp")))
2478 (add-after 'build 'build-extra
2479 (lambda _
2480 (invoke "python3" "./setup.py" "build_i18n")
2481 (invoke "python3" "horizons/engine/generate_atlases.py" "2048")
2482 #t))
2483 (add-after 'install 'patch
2484 (lambda* (#:key outputs #:allow-other-keys)
2485 (let ((out (assoc-ref outputs "out")))
2486 (substitute* (string-append out "/bin/unknown-horizons")
2487 (("os\\.chdir\\(get\\_content\\_dir\\_parent_path\\(\\)\\)")
2488 (string-append "os.chdir(\""
2489 (assoc-ref outputs "out")
2490 "/share/unknown-horizons\")"))))
2491 #t))
2492 ;; TODO: Run GUI tests as well
2493 (replace 'check
2494 (lambda _
2495 (substitute* "horizons/constants.py"
2496 (("IS_DEV_VERSION = False")
2497 "IS_DEV_VERSION = True"))
2498 (invoke "pytest" "tests")
2499 (substitute* "horizons/constants.py"
2500 (("IS_DEV_VERSION = True")
2501 "IS_DEV_VERSION = False"))
2502 #t)))))
2503 (inputs
2504 `(("fifengine" ,fifengine)
2505 ("python:tk" ,python "tk")
2506 ("python-pillow" ,python-pillow)
2507 ("python-pyyaml" ,python-pyyaml)))
2508 (native-inputs
2509 `(("intltool" ,intltool)
2510
2511 ;; Required for tests
2512 ("python-greenlet" ,python-greenlet)
2513 ("python-polib" ,python-polib)
2514 ("python-pytest" ,python-pytest)
2515 ("python-pytest-mock" ,python-pytest-mock)))
2516 (home-page "http://unknown-horizons.org/")
2517 (synopsis "Isometric realtime strategy, economy and city building simulation")
2518 (description
2519 "Unknown Horizons is a 2D realtime strategy simulation with an emphasis
2520 on economy and city building. Expand your small settlement to a strong and
2521 wealthy colony, collect taxes and supply your inhabitants with valuable
2522 goods. Increase your power with a well balanced economy and with strategic
2523 trade and diplomacy.")
2524 (license (list
2525 license:gpl2+ ; Covers code
2526 license:expat ; tests/dummy.py, ext/polib.py
2527 license:cc-by-sa3.0 ; Covers some media content
2528 license:cc-by3.0 ; Covers some media content
2529 license:bsd-3)))) ; horizons/ext/speaklater.py
2530
2531 (define-public gnujump
2532 (package
2533 (name "gnujump")
2534 (version "1.0.8")
2535 (source (origin
2536 (method url-fetch)
2537 (uri (string-append "mirror://gnu/gnujump/gnujump-"
2538 version ".tar.gz"))
2539 (sha256
2540 (base32
2541 "05syy9mzbyqcfnm0hrswlmhwlwx54f0l6zhcaq8c1c0f8dgzxhqk"))))
2542 (build-system gnu-build-system)
2543 (arguments
2544 '(#:phases
2545 (modify-phases %standard-phases
2546 (add-before
2547 'configure 'link-libm
2548 (lambda _ (setenv "LIBS" "-lm")))
2549 (add-after 'install 'create-desktop-entry
2550 (lambda* (#:key outputs #:allow-other-keys)
2551 (let* ((out (assoc-ref outputs "out"))
2552 (apps (string-append out "/share/applications")))
2553 (mkdir-p apps)
2554 (with-output-to-file
2555 (string-append apps "/gnujump.desktop")
2556 (lambda _
2557 (format #t
2558 "[Desktop Entry]~@
2559 Name=GNUjump~@
2560 Comment=Jump up the tower to survive~@
2561 Exec=~a/bin/gnujump~@
2562 Terminal=false~@
2563 Type=Application~@
2564 Categories=Game;ArcadeGame~%"
2565 out)))))))))
2566 (inputs
2567 `(("glu" ,glu)
2568 ("mesa" ,mesa)
2569 ("sdl" ,sdl)
2570 ("sdl-image" ,sdl-image)
2571 ("sdl-mixer" ,sdl-mixer)))
2572 (home-page "http://gnujump.es.gnu.org/")
2573 (synopsis
2574 "Game of jumping to the next floor, trying not to fall")
2575 (description
2576 "GNUjump is a simple, yet addictive game in which you must jump from
2577 platform to platform to avoid falling, while the platforms drop at faster rates
2578 the higher you go. The game features multiplayer, unlimited FPS, smooth floor
2579 falling, themeable graphics and sounds, and replays.")
2580 (license license:gpl3+)))
2581
2582 (define-public wesnoth
2583 (package
2584 (name "wesnoth")
2585 (version "1.14.9")
2586 (source (origin
2587 (method url-fetch)
2588 (uri (string-append "mirror://sourceforge/wesnoth/wesnoth-"
2589 (version-major+minor version)
2590 "/wesnoth-" version "/"
2591 "wesnoth-" version ".tar.bz2"))
2592 (sha256
2593 (base32
2594 "1mhdrlflxxyknf54lwdbvs7fazlc1scf7z6vxxa3j746fks533ga"))))
2595 (build-system cmake-build-system)
2596 (arguments
2597 `(#:tests? #f ;no check target
2598 #:phases (modify-phases %standard-phases
2599 (add-before 'configure 'treat-boost-as-system-header
2600 (lambda* (#:key inputs #:allow-other-keys)
2601 (let ((boost (assoc-ref inputs "boost")))
2602 ;; Ensure Boost is treated as "system headers" to
2603 ;; pacify compiler warnings induced by Boost headers.
2604 (for-each (lambda (variable)
2605 (setenv variable
2606 (string-append boost "/include:"
2607 (or (getenv variable)
2608 ""))))
2609 '("C_INCLUDE_PATH" "CPLUS_INCLUDE_PATH"))
2610 #t))))))
2611 (native-inputs
2612 `(("gettext" ,gettext-minimal)
2613 ("pkg-config" ,pkg-config)))
2614 (inputs
2615 `(("boost" ,boost)
2616 ("dbus" ,dbus)
2617 ("fribidi" ,fribidi)
2618 ("libvorbis" ,libvorbis)
2619 ("openssl" ,openssl)
2620 ("pango" ,pango)
2621 ("sdl-union" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))))
2622 (home-page "https://www.wesnoth.org/")
2623 (synopsis "Turn-based strategy game")
2624 (description
2625 "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,
2626 with several single player campaigns, and multiplayer games (both networked and
2627 local).
2628
2629 Battle for control on a range of maps, using variety of units which have
2630 advantages and disadvantages against different types of attacks. Units gain
2631 experience and advance levels, and are carried over from one scenario to the
2632 next campaign.")
2633 (license license:gpl2+)))
2634
2635 (define-public the-battle-for-wesnoth
2636 (deprecated-package "the-battle-for-wesnoth" wesnoth))
2637
2638 (define-public wesnoth-server
2639 (package
2640 (inherit wesnoth)
2641 (name "wesnoth-server")
2642 (inputs
2643 `(("boost" ,boost)
2644 ("icu4c" ,icu4c)
2645 ("openssl" ,openssl)
2646 ("sdl2" ,sdl2)))
2647 (arguments
2648 `(#:configure-flags '("-DENABLE_GAME=OFF")
2649 ,@(package-arguments wesnoth)))
2650 (synopsis "Dedicated @emph{Battle for Wesnoth} server")
2651 (description "This package contains a dedicated server for @emph{The
2652 Battle for Wesnoth}.")))
2653
2654 (define-public the-battle-for-wesnoth-server
2655 (deprecated-package "the-battle-for-wesnoth-server" wesnoth-server))
2656
2657 (define-public gamine
2658 (package
2659 (name "gamine")
2660 (version "1.6")
2661 (source (origin
2662 (method url-fetch)
2663 (uri (string-append "mirror://sourceforge/gamine-game/"
2664 "gamine-" version ".tar.gz"))
2665 (sha256
2666 (base32
2667 "1sc6f4445ciigd6yw0ri92746k4hk6ps0bvj9fm1gbp3c3fslk5n"))))
2668 (build-system gnu-build-system)
2669 (native-inputs
2670 `(("pkg-config" ,pkg-config)
2671 ("intltool" ,intltool)))
2672 (inputs
2673 `(("gstreamer" ,gstreamer)
2674 ("gst-plugins-base" ,gst-plugins-base) ; playbin plugin
2675 ("gst-plugins-good" ,gst-plugins-good) ; for wav playback
2676 ("gtk+" ,gtk+)))
2677 (arguments
2678 `(#:tests? #f
2679 #:make-flags
2680 (let ((out (assoc-ref %outputs "out")))
2681 (list (string-append "PREFIX=" out)
2682 (string-append "SYSCONFDIR=" out "/etc")))
2683 #:phases
2684 (modify-phases %standard-phases
2685 (delete 'configure)
2686 (add-after
2687 'install 'wrap-gamine
2688 (lambda* (#:key outputs #:allow-other-keys)
2689 (let ((out (assoc-ref outputs "out"))
2690 (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
2691 (wrap-program (string-append out "/bin/gamine")
2692 `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))))
2693 #t)))))
2694 (home-page "http://gamine-game.sourceforge.net/")
2695 (synopsis "Mouse and keyboard discovery for children")
2696 (description
2697 "Gamine is a game designed for young children who are learning to use the
2698 mouse and keyboard. The child uses the mouse to draw colored dots and lines
2699 on the screen and keyboard to display letters.")
2700 ;; Most files under gpl2+ or gpl3+, but eat.wav under gpl3
2701 (license license:gpl3)))
2702
2703 (define-public manaplus
2704 (package
2705 (name "manaplus")
2706 (version "1.9.3.23")
2707 (source (origin
2708 (method url-fetch)
2709 (uri (string-append
2710 "https://repo.manaplus.org/manaplus/download/"
2711 version "/manaplus-" version ".tar.xz"))
2712 (sha256
2713 (base32
2714 "1ky182p4svwdqm6cf7jbns85hidkhkhq4s17cs2p381f0klapfjz"))))
2715 (build-system gnu-build-system)
2716 (arguments
2717 '(#:configure-flags
2718 (list (string-append "CPPFLAGS=-I"
2719 (assoc-ref %build-inputs "sdl-union")
2720 "/include/SDL"))))
2721 (native-inputs
2722 `(("pkg-config" ,pkg-config)))
2723 (inputs
2724 `(("glu" ,glu)
2725 ("curl" ,curl)
2726 ("libxml2" ,libxml2)
2727 ("mesa" ,mesa)
2728 ("sdl-union" ,(sdl-union))))
2729 (home-page "https://manaplus.org")
2730 (synopsis "Client for 'The Mana World' and similar games")
2731 (description
2732 "ManaPlus is a 2D MMORPG client for game servers. It is the only
2733 fully supported client for @uref{http://www.themanaworld.org, The mana
2734 world}, @uref{http://evolonline.org, Evol Online} and
2735 @uref{http://landoffire.org, Land of fire}.")
2736 ;; "src/debug/*" and "src/sdl2gfx/*" are under Zlib.
2737 ;; "data/themes/{golden-delicious,jewelry}/*" are under CC-BY-SA.
2738 ;; The rest is under GPL2+.
2739 (license (list license:gpl2+ license:zlib license:cc-by-sa4.0))))
2740
2741 (define openttd-engine
2742 (package
2743 (name "openttd-engine")
2744 (version "1.9.3")
2745 (source
2746 (origin (method url-fetch)
2747 (uri (string-append "https://proxy.binaries.openttd.org/openttd-releases/"
2748 version "/openttd-" version "-source.tar.xz"))
2749 (sha256
2750 (base32
2751 "0ijq72kgx997ggw40i5f4a3nf7y2g72z37l47i18yjvgbdzy320r"))
2752 (modules '((guix build utils)))
2753 (snippet
2754 ;; The DOS port contains proprietary software.
2755 '(begin
2756 (delete-file-recursively "os/dos")
2757 #t))))
2758 (build-system gnu-build-system)
2759 (arguments
2760 `(#:tests? #f ; no "check" target
2761 #:phases
2762 (modify-phases %standard-phases
2763 ;; The build process fails if the configure script is passed the
2764 ;; option "--enable-fast-install".
2765 (replace 'configure
2766 (lambda* (#:key inputs outputs (configure-flags '())
2767 #:allow-other-keys)
2768 (let ((out (assoc-ref outputs "out"))
2769 (lzo (assoc-ref inputs "lzo")))
2770 (apply invoke "./configure"
2771 (string-append "--prefix=" out)
2772 ;; Provide the "lzo" path.
2773 (string-append "--with-liblzo2="
2774 lzo "/lib/liblzo2.a")
2775 ;; Put the binary in 'bin' instead of 'games'.
2776 "--binary-dir=bin"
2777 configure-flags)))))))
2778 (native-inputs `(("pkg-config" ,pkg-config)))
2779 (inputs
2780 `(("allegro" ,allegro)
2781 ("fontconfig" ,fontconfig)
2782 ("freetype" ,freetype)
2783 ("icu4c" ,icu4c)
2784 ("libpng" ,libpng)
2785 ("lzo" ,lzo)
2786 ("sdl" ,sdl)
2787 ("xz" ,xz)
2788 ("zlib" ,zlib)))
2789 (synopsis "Transportation economics simulator game")
2790 (description "OpenTTD is a game in which you transport goods and
2791 passengers by land, water and air. It is a re-implementation of Transport
2792 Tycoon Deluxe with many enhancements including multiplayer mode,
2793 internationalization support, conditional orders and the ability to clone,
2794 autoreplace and autoupdate vehicles. This package only includes the game
2795 engine. When you start it you will be prompted to download a graphics set.")
2796 (home-page "https://www.openttd.org/")
2797 ;; This package is GPLv2, except for a few files located in
2798 ;; "src/3rdparty/" which are under the 3-clause BSD, LGPLv2.1+ and Zlib
2799 ;; licenses. In addition, this software contains an in-game downloader
2800 ;; from which the user may find non-functional data licensed under
2801 ;; different terms.
2802 (license (list license:bsd-3 license:gpl2 license:lgpl2.1+ license:zlib))))
2803
2804 (define openttd-opengfx
2805 (package
2806 (name "openttd-opengfx")
2807 (version "0.5.5")
2808 (source
2809 (origin
2810 (method url-fetch)
2811 (uri (string-append "http://binaries.openttd.org/extra/opengfx/"
2812 version "/opengfx-" version "-source.tar.xz"))
2813 (sha256
2814 (base32
2815 "009fa1bdin1bk0ynzhzc30hzkmmwzmwkk6j591ax3f6w75l28n49"))))
2816 (build-system gnu-build-system)
2817 (arguments
2818 '(#:make-flags (list "CC=gcc"
2819 (string-append "INSTALL_DIR="
2820 (assoc-ref %outputs "out")
2821 "/share/games/openttd/baseset/opengfx"))
2822 #:phases
2823 (modify-phases %standard-phases
2824 (replace 'configure
2825 (lambda _
2826 ;; Make sure HOME is writable for GIMP.
2827 (setenv "HOME" (getcwd))
2828
2829 ;; Redirect stdout, not stderr, to /dev/null. This prevents
2830 ;; dos2unix from receiving its version information as a flag.
2831 (substitute* "Makefile"
2832 (("\\$\\(UNIX2DOS\\) -q --version 2>/dev/null")
2833 "$(UNIX2DOS) -q --version 1>/dev/null")))))
2834 ;; The check phase for this package only checks the md5sums of the built
2835 ;; GRF files against the md5sums of the release versions. Because we use
2836 ;; different software versions than upstream does, some of the md5sums
2837 ;; are different. However, the package is still reproducible, it's safe
2838 ;; to disable this test.
2839 #:tests? #f
2840 #:parallel-build? #f))
2841 (native-inputs `(("dos2unix" ,dos2unix)
2842 ("gimp" ,gimp)
2843 ("grfcodec" ,grfcodec)
2844 ("nml" ,nml)
2845 ("python" ,python-2)))
2846 (home-page "http://dev.openttdcoop.org/projects/opengfx")
2847 (synopsis "Base graphics set for OpenTTD")
2848 (description
2849 "The OpenGFX projects is an implementation of the OpenTTD base grahics
2850 set that aims to ensure the best possible out-of-the-box experience.
2851
2852 OpenGFX provides you with...
2853 @enumerate
2854 @item All graphics you need to enjoy OpenTTD.
2855 @item Uniquely drawn rail vehicles for every climate.
2856 @item Completely snow-aware rivers.
2857 @item Different river and sea water.
2858 @item Snow-aware buoys.
2859 @end enumerate")
2860 (license license:gpl2)))
2861
2862 (define openttd-opensfx
2863 (package
2864 (name "openttd-opensfx")
2865 (version "0.2.3")
2866 (source
2867 (origin
2868 (method url-fetch)
2869 (uri (string-append
2870 "https://binaries.openttd.org/extra/opensfx/"
2871 version "/opensfx-" version "-source.tar.gz"))
2872 (sha256
2873 (base32
2874 "03jxgp02ks31hmsdh4xh0xcpkb70ds8jakc9pfc1y9vdrdavh4p5"))))
2875 (build-system gnu-build-system)
2876 (native-inputs
2877 `(("catcodec" ,catcodec)
2878 ("python" ,python-2)))
2879 (arguments
2880 `(#:make-flags
2881 (list (string-append "INSTALL_DIR=" %output
2882 "/share/games/openttd/baseset/opensfx"))
2883 #:phases
2884 (modify-phases %standard-phases
2885 (add-after 'unpack 'make-reproducible
2886 (lambda _
2887 ;; Remove the time dependency of the installed tarball by setting
2888 ;; the modification times if its members to 0.
2889 (substitute* "scripts/Makefile.def"
2890 (("-cf") " --mtime=@0 -cf"))
2891 #t))
2892 (delete 'configure))))
2893 (home-page "http://dev.openttdcoop.org/projects/opensfx")
2894 (synopsis "Base sounds for OpenTTD")
2895 (description "OpenSFX is a set of free base sounds for OpenTTD which make
2896 it possible to play OpenTTD without requiring the proprietary sound files from
2897 the original Transport Tycoon Deluxe.")
2898 (license license:cc-sampling-plus-1.0)))
2899
2900 (define openttd-openmsx
2901 (package
2902 (name "openttd-openmsx")
2903 (version "0.3.1")
2904 (source
2905 (origin
2906 (method url-fetch)
2907 (uri (string-append
2908 "https://binaries.openttd.org/extra/openmsx/"
2909 version "/openmsx-" version "-source.tar.gz"))
2910 (sha256
2911 (base32
2912 "0nskq97a6fsv1v6d62zf3yb8whzhqnlh3lap3va3nzvj7csjgf7c"))))
2913 (build-system gnu-build-system)
2914 (native-inputs
2915 `(("python" ,python-2)))
2916 (arguments
2917 `(#:make-flags
2918 (list (string-append "INSTALL_DIR=" %output
2919 "/share/games/openttd/baseset"))
2920 #:phases
2921 (modify-phases %standard-phases
2922 (delete 'configure)
2923 (add-after 'install 'post-install
2924 ;; Rename openmsx-version to openmsx
2925 (lambda* (#:key outputs #:allow-other-keys)
2926 (let ((install-directory (string-append (assoc-ref outputs "out")
2927 "/share/games/openttd/baseset")))
2928 (rename-file (string-append install-directory "/openmsx-" ,version)
2929 (string-append install-directory "/openmsx"))
2930 #t))))))
2931 (home-page "http://dev.openttdcoop.org/projects/openmsx")
2932 (synopsis "Music set for OpenTTD")
2933 (description "OpenMSX is a music set for OpenTTD which makes it possible
2934 to play OpenTTD without requiring the proprietary music from the original
2935 Transport Tycoon Deluxe.")
2936 (license license:gpl2)))
2937
2938 (define-public openttd
2939 (package
2940 (inherit openttd-engine)
2941 (name "openttd")
2942 (arguments
2943 `(#:configure-flags
2944 (list (string-append "--with-midi=" (assoc-ref %build-inputs "timidity++")
2945 "/bin/timidity"))
2946 ,@(substitute-keyword-arguments (package-arguments openttd-engine)
2947 ((#:phases phases)
2948 `(modify-phases ,phases
2949 (add-after 'install 'install-data
2950 (lambda* (#:key inputs outputs #:allow-other-keys)
2951 (for-each
2952 (lambda (input)
2953 (copy-recursively (assoc-ref inputs input)
2954 (assoc-ref outputs "out")))
2955 (list "opengfx" "openmsx" "opensfx"))
2956 #t)))))))
2957 (inputs
2958 `(("timidity++" ,timidity++)
2959 ,@(package-inputs openttd-engine)))
2960 (native-inputs
2961 `(("opengfx" ,openttd-opengfx)
2962 ("openmsx" ,openttd-openmsx)
2963 ("opensfx" ,openttd-opensfx)
2964 ,@(package-native-inputs openttd-engine)))))
2965
2966 (define openrct2-title-sequences
2967 (package
2968 (name "openrct2-title-sequences")
2969 (version "0.1.2")
2970 (source
2971 (origin
2972 (method url-fetch)
2973 (uri (string-append "https://github.com/OpenRCT2/title-sequences/releases/download/v"
2974 version "/title-sequence-v" version ".zip"))
2975 (file-name (string-append name "-" version ".zip"))
2976 (sha256
2977 (base32
2978 "0qbyxrsw8hlgaq0r5d7lx7an3idy4qbfv7yiw9byhldk763n9cfw"))))
2979 (build-system trivial-build-system)
2980 (native-inputs
2981 `(("bash" ,bash)
2982 ("coreutils" ,coreutils)
2983 ("unzip" ,unzip)))
2984 (arguments
2985 `(#:modules ((guix build utils))
2986 #:builder
2987 (begin
2988 (use-modules (guix build utils))
2989 (let* ((out (assoc-ref %outputs "out"))
2990 (openrct2-title-sequences (string-append out
2991 "/share/openrct2/title-sequences"))
2992 (source (assoc-ref %build-inputs "source"))
2993 (unzip (string-append (assoc-ref %build-inputs "unzip") "/bin/unzip")))
2994 (copy-file source (string-append ,name "-" ,version ".zip"))
2995 (invoke unzip (string-append ,name "-" ,version ".zip"))
2996 (delete-file (string-append ,name "-" ,version ".zip"))
2997 (mkdir-p openrct2-title-sequences)
2998 (copy-recursively "."
2999 openrct2-title-sequences)
3000 #t))))
3001 (home-page "https://github.com/OpenRCT2/OpenRCT2")
3002 (synopsis "Title sequences for OpenRCT2")
3003 (description
3004 "openrct2-title-sequences is a set of title sequences for OpenRCT2.")
3005 (license license:gpl3+)))
3006
3007 (define openrct2-objects
3008 (package
3009 (name "openrct2-objects")
3010 (version "1.0.9")
3011 (source
3012 (origin
3013 (method url-fetch)
3014 (uri (string-append "https://github.com/OpenRCT2/objects/releases/download/v"
3015 version "/objects.zip"))
3016 (file-name (string-append name "-" version ".zip"))
3017 (sha256
3018 (base32 "02apb8h553m7d6jvysgb1zahvxc1yzyygfca2iclb21b3fhpsas4"))))
3019 (build-system trivial-build-system)
3020 (native-inputs
3021 `(("bash" ,bash)
3022 ("coreutils" ,coreutils)
3023 ("unzip" ,unzip)))
3024 (arguments
3025 `(#:modules ((guix build utils))
3026 #:builder
3027 (begin
3028 (use-modules (guix build utils))
3029 (let* ((out (assoc-ref %outputs "out"))
3030 (openrct2-objects (string-append out
3031 "/share/openrct2/objects"))
3032 (source (assoc-ref %build-inputs "source"))
3033 (unzip (string-append (assoc-ref %build-inputs "unzip") "/bin/unzip")))
3034 (copy-file source (string-append ,name "-" ,version ".zip"))
3035 (invoke unzip (string-append ,name "-" ,version ".zip"))
3036 (delete-file (string-append ,name "-" ,version ".zip"))
3037 (mkdir-p openrct2-objects)
3038 (copy-recursively "."
3039 openrct2-objects)
3040 #t))))
3041 (home-page "https://github.com/OpenRCT2/OpenRCT2")
3042 (synopsis "Objects for OpenRCT2")
3043 (description
3044 "openrct2-objects is a set of objects for OpenRCT2.")
3045 (license license:gpl3+)))
3046
3047 (define-public openrct2
3048 (package
3049 (name "openrct2")
3050 (version "0.2.4")
3051 (source
3052 (origin
3053 (method git-fetch)
3054 (uri (git-reference
3055 (url "https://github.com/OpenRCT2/OpenRCT2.git")
3056 (commit (string-append "v" version))))
3057 (file-name (git-file-name name version))
3058 (sha256
3059 (base32 "1rlw3w20llg36sj3bk50g661qw766ng8ma3p42sdkj8br9dw800h"))))
3060 (build-system cmake-build-system)
3061 (arguments
3062 `(#:configure-flags (list "-DDOWNLOAD_OBJECTS=OFF"
3063 "-DDOWNLOAD_TITLE_SEQUENCES=OFF")
3064 #:tests? #f ; tests require network access
3065 #:phases
3066 (modify-phases %standard-phases
3067 (add-after 'unpack 'fix-usr-share-paths&add-data
3068 (lambda* (#:key inputs outputs #:allow-other-keys)
3069 (let ((titles (assoc-ref inputs "openrct2-title-sequences"))
3070 (objects (assoc-ref inputs "openrct2-objects")))
3071 ;; Fix some references to /usr/share.
3072 (substitute* "src/openrct2/platform/Platform.Linux.cpp"
3073 (("/usr/share")
3074 (string-append (assoc-ref %outputs "out") "/share")))
3075 (copy-recursively
3076 (string-append titles "/share/openrct2/title-sequences")
3077 "data/title")
3078 (copy-recursively
3079 (string-append objects "/share/openrct2/objects")
3080 "data/object"))))
3081 (add-before 'configure 'get-rid-of-errors
3082 (lambda _
3083 ;; Don't treat warnings as errors.
3084 (substitute* "CMakeLists.txt"
3085 (("-Werror") ""))
3086 #t)))))
3087 (inputs `(("curl" ,curl)
3088 ("fontconfig" ,fontconfig)
3089 ("freetype" ,freetype)
3090 ("icu4c" ,icu4c)
3091 ("jansson" ,jansson)
3092 ("libpng" ,libpng)
3093 ("libzip" ,libzip)
3094 ("mesa" ,mesa)
3095 ("openrct2-objects" ,openrct2-objects)
3096 ("openrct2-title-sequences" ,openrct2-title-sequences)
3097 ("openssl" ,openssl)
3098 ("sdl2" ,sdl2)
3099 ("speexdsp" ,speexdsp)
3100 ("zlib" ,zlib)))
3101 (native-inputs
3102 `(("pkg-config" ,pkg-config)))
3103 (home-page "https://github.com/OpenRCT2/OpenRCT2")
3104 (synopsis "Free software re-implementation of RollerCoaster Tycoon 2")
3105 (description "OpenRCT2 is a free software re-implementation of
3106 RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and
3107 maintaining an amusement park containing attractions, shops and facilities.
3108
3109 Note that this package does @emph{not} provide the game assets (sounds,
3110 images, etc.)")
3111 ;; See <https://github.com/OpenRCT2/OpenRCT2/wiki/Required-RCT2-files>
3112 ;; regarding assets.
3113 (license license:gpl3+)))
3114
3115 (define-public pinball
3116 (package
3117 (name "pinball")
3118 (version "0.3.1")
3119 (source
3120 (origin (method url-fetch)
3121 (uri (string-append "mirror://sourceforge/pinball/pinball/"
3122 "pinball-" version "/"
3123 "pinball-" version ".tar.gz"))
3124 (sha256
3125 (base32
3126 "1f2whlrfidwfh8lvr8cspcyirc6840r5d1ajm7x99qmngygrhixs"))
3127 (patches (search-patches "pinball-const-fix.patch"
3128 "pinball-cstddef.patch"
3129 "pinball-missing-separators.patch"
3130 "pinball-src-deps.patch"
3131 "pinball-system-ltdl.patch"))))
3132 (build-system gnu-build-system)
3133 (inputs
3134 `(("glu" ,glu)
3135 ("mesa" ,mesa)
3136 ("sdl" ,sdl)
3137 ("sdl-image" ,sdl-image)
3138 ("sdl-mixer" ,sdl-mixer)))
3139 (arguments
3140 '(#:configure-flags
3141 (list (string-append "CPPFLAGS=-I"
3142 (assoc-ref %build-inputs "sdl-image")
3143 "/include/SDL -I"
3144 (assoc-ref %build-inputs "sdl-mixer")
3145 "/include/SDL"))))
3146 (home-page "http://pinball.sourceforge.net")
3147 (synopsis "Pinball simulator")
3148 (description "The Emilia Pinball Project is a pinball simulator. There
3149 are only two levels to play with, but they are very addictive.")
3150 (license license:gpl2)))
3151
3152 (define-public pioneers
3153 (package
3154 (name "pioneers")
3155 (version "15.5")
3156 (source (origin
3157 (method url-fetch)
3158 (uri (string-append "http://downloads.sourceforge.net/pio/"
3159 "pioneers-" version ".tar.gz"))
3160 (sha256
3161 (base32
3162 "037gdiiw690jw3wd1s9lxmkqx0caxyk0b4drpm7i9p28gig43q9y"))))
3163 (build-system gnu-build-system)
3164 (inputs `(("avahi" ,avahi)
3165 ("gtk+" ,gtk+)
3166 ("librsvg" ,librsvg)))
3167 (native-inputs `(("intltool" ,intltool)
3168 ("itstool" ,itstool)
3169 ("libxml2" ,libxml2)
3170 ("pkg-config" ,pkg-config)))
3171 (synopsis "Board game inspired by The Settlers of Catan")
3172 (description "Pioneers is an emulation of the board game The Settlers of
3173 Catan. It can be played on a local network, on the internet, and with AI
3174 players.")
3175 (home-page "http://pio.sourceforge.net/")
3176 (license license:gpl2+)))
3177
3178 (define-public einstein
3179 (package
3180 (name "einstein")
3181 (version "2.0")
3182 (source (origin
3183 (method url-fetch)
3184 (uri (string-append "mirror://debian/pool/main/e/"
3185 "einstein/einstein_2.0.dfsg.2.orig.tar.gz"))
3186 (sha256
3187 (base32
3188 "1hxrlv6n8py48j487i6wbb4n4vd55w0na69r7ccmmr9vmrsw5mlk"))
3189 (patches (search-patches "einstein-build.patch"))))
3190 (build-system gnu-build-system)
3191 (inputs
3192 `(("freetype" ,freetype)
3193 ("sdl" ,(sdl-union (list sdl sdl-mixer sdl-ttf)))
3194 ("zlib" ,zlib)))
3195 (native-inputs
3196 `(("font-dejavu" ,font-dejavu)))
3197 (arguments
3198 `(#:tests? #f ; no check target
3199 #:phases
3200 (modify-phases %standard-phases
3201 (replace 'configure
3202 (lambda* (#:key outputs inputs #:allow-other-keys)
3203 (let ((out (assoc-ref outputs "out"))
3204 (dejavu (string-append (assoc-ref inputs "font-dejavu")
3205 "/share/fonts/truetype/DejaVuSans.ttf")))
3206 (substitute* "Makefile"
3207 (("PREFIX=/usr/local") (string-append "PREFIX=" out)))
3208 ;; The patch above registers a free font for use by the binary,
3209 ;; but the font is copied during the compile phase into a
3210 ;; resources file, so we need to make the ttf file available.
3211 (symlink dejavu "res/DejaVuSans.ttf")
3212 #t))))))
3213 (synopsis "Logic puzzle game")
3214 (description "The goal of this logic game is to open all cards in a 6x6
3215 grid, using a number of hints as to their relative position. The game idea
3216 is attributed to Albert Einstein.")
3217 ;; The original home page has disappeared.
3218 (home-page (string-append "http://web.archive.org/web/20120521062745/"
3219 "http://games.flowix.com/en/index.html"))
3220 ;; License according to
3221 ;; http://web.archive.org/web/20150222180355/http://www.babichev.info/en/projects/index.html
3222 ;; The source code is a DFSG-sanitized tarball and does not contain any
3223 ;; license information.
3224 (license license:gpl3+)))
3225
3226 (define-public powwow
3227 (package
3228 (name "powwow")
3229 (version "1.2.19")
3230 (source (origin
3231 (method url-fetch)
3232 (uri (string-append
3233 "https://www.hoopajoo.net/static/projects/powwow-"
3234 version ".tar.gz"))
3235 (sha256
3236 (base32
3237 "10rjl63hmf62qslyhzqrbw3i2zf09dgxv65avhj0iiz0m4pbc9wy"))))
3238 (inputs
3239 `(("ncurses" ,ncurses)))
3240 (build-system gnu-build-system)
3241 (home-page "https://www.hoopajoo.net/projects/powwow.html")
3242 (synopsis "MUD and telnet client")
3243 (description
3244 "POWWOW is a client software which can be used for telnet as well as for
3245 @dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for
3246 the chat server psyced with the specific config located at
3247 http://lavachat.symlynx.com/unix/")
3248 (license license:gpl2+)))
3249
3250 (define-public red-eclipse
3251 (let ((release "2.0.0")
3252 (revision 0))
3253 (package
3254 (name "red-eclipse")
3255 (version (if (zero? revision)
3256 release
3257 (string-append release "-"
3258 (number->string revision))))
3259 (source
3260 (origin
3261 (method git-fetch)
3262 (uri (git-reference
3263 (url "https://github.com/redeclipse/base.git")
3264 (commit (string-append "v" release))
3265 (recursive? #t))) ; for game data
3266 (file-name (git-file-name name version))
3267 (sha256
3268 (base32 "0sz0mqhwx8r9n4mk3qrxw420nlsm3y0n48gd0lazgd64lfqjh3ab"))
3269 (modules '((guix build utils)))
3270 (snippet
3271 ;; Remove proprietary libraries and other pre-compiled binaries.
3272 '(begin
3273 (delete-file-recursively "bin")
3274 #t))))
3275 (build-system gnu-build-system)
3276 (arguments
3277 `(#:tests? #f ; no check target
3278 #:make-flags (list "CC=gcc" "-Csrc"
3279 (string-append "INSTDIR="
3280 (assoc-ref %outputs "out") "/bin")
3281 (string-append "prefix="
3282 (assoc-ref %outputs "out")))
3283 #:phases
3284 (modify-phases %standard-phases
3285 (add-after 'unpack 'add-store-data-package-path-as-default
3286 (lambda* (#:key outputs #:allow-other-keys)
3287 (substitute* "src/engine/server.cpp"
3288 (("data = \"data\"")
3289 (string-append "data = \""
3290 (assoc-ref outputs "out")
3291 "/share/redeclipse/data\"")))
3292 #t))
3293 (delete 'configure) ; no configure script
3294 (add-after 'set-paths 'set-sdl-paths
3295 (lambda* (#:key inputs #:allow-other-keys)
3296 (setenv "CPATH"
3297 (string-append (assoc-ref inputs "sdl-union")
3298 "/include/SDL2:"
3299 (or (getenv "CPATH") "")))
3300 #t))
3301 (add-after 'install 'copy-data
3302 (lambda* (#:key outputs #:allow-other-keys)
3303 (let ((out (assoc-ref outputs "out")))
3304 (copy-recursively "config"
3305 (string-append out "/config"))
3306 (copy-file "doc/examples/servinit.cfg"
3307 (string-append out "/config/servinit.cfg"))
3308 (copy-recursively "data"
3309 (string-append out "/share/redeclipse/data"))
3310 (mkdir-p (string-append out "/lib/redeclipse"))
3311 (symlink (string-append out "/share/redeclipse/data")
3312 (string-append out "/lib/redeclipse/data")))
3313 #t))
3314 (add-after 'copy-data 'wrap-program
3315 (lambda* (#:key inputs outputs #:allow-other-keys)
3316 (let* ((out (assoc-ref outputs "out"))
3317 (bin (string-append out "/bin")))
3318 (with-directory-excursion bin
3319 (rename-file "redeclipse_linux"
3320 ".redeclipse_linux-real")
3321 (rename-file "redeclipse_server_linux"
3322 ".redeclipse_server_linux-real")
3323 (call-with-output-file "redeclipse_linux"
3324 (lambda (port)
3325 (format port "#!~a/bin/sh
3326 # Run the thing from its home, otherwise it just bails out.
3327 cd \"~a\"
3328 exec -a \"$0\" ~a/.redeclipse_linux-real~%"
3329 (assoc-ref inputs "bash") ;implicit input
3330 (string-append out)
3331 (string-append bin))))
3332 (call-with-output-file "redeclipse_server_linux"
3333 (lambda (port)
3334 (format port "#!~a/bin/sh
3335 # Run the thing from its home, otherwise it just bails out.
3336 cd \"~a\"
3337 exec -a \"$0\" ~a/.redeclipse_server_linux-real~%"
3338 (assoc-ref inputs "bash") ;implicit input
3339 (string-append out)
3340 (string-append bin))))
3341 (chmod "redeclipse_linux" #o555)
3342 (chmod "redeclipse_server_linux" #o555)))
3343 #t)))))
3344 (native-inputs
3345 `(("pkg-config" ,pkg-config)))
3346 (inputs
3347 `(("curl" ,curl)
3348 ("freetype" ,freetype)
3349 ("glu" ,glu)
3350 ("sdl-union" ,(sdl-union (list sdl2
3351 sdl2-image
3352 sdl2-mixer)))))
3353 (home-page "https://redeclipse.net/")
3354 (synopsis "Arena shooter derived from the Cube 2 engine")
3355 (description
3356 "Red Eclipse is an arena shooter, created from the Cube2 engine.
3357 Offering an innovative parkour system and distinct but all potent weapons,
3358 Red Eclipse provides fast paced and accessible gameplay.")
3359 ;; The engine is under Zlib; data files are covered by the other
3360 ;; licenses. More details at file:///doc/all-licenses.txt.
3361 (license (list license:expat
3362 license:zlib
3363 license:cc-by-sa4.0
3364 license:cc-by-sa3.0
3365 license:cc-by3.0
3366 license:cc0
3367 license:public-domain
3368 license:silofl1.1)))))
3369
3370 (define-public grue-hunter
3371 (package
3372 (name "grue-hunter")
3373 (version "1.0")
3374 (source (origin
3375 (method url-fetch)
3376 (uri (string-append "https://jxself.org/grue-hunter.tar.gz"))
3377 (sha256
3378 (base32
3379 "1hjcpy5439qs3v2zykis7hsi0i17zjs62gks3zd8mnfw9ni4i2h3"))))
3380 (build-system trivial-build-system) ; no Makefile.PL
3381 (arguments `(#:modules ((guix build utils))
3382 #:builder
3383 (begin
3384 (use-modules (guix build utils))
3385 (use-modules (srfi srfi-1))
3386
3387 (let* ((tarball (assoc-ref %build-inputs "tarball"))
3388 (perl (string-append (assoc-ref %build-inputs
3389 "perl")
3390 "/bin"))
3391 (gzip (string-append (assoc-ref %build-inputs
3392 "gzip")
3393 "/bin/gzip"))
3394 (tar (string-append (assoc-ref %build-inputs
3395 "tar")
3396 "/bin/tar"))
3397 (out (assoc-ref %outputs "out"))
3398 (bin (string-append out "/bin"))
3399 (doc (string-append out
3400 "/share/doc/grue-hunter")))
3401 (copy-file tarball "grue-hunter.tar.gz")
3402 (invoke gzip "-d" "grue-hunter.tar.gz")
3403 (invoke tar "xvf" "grue-hunter.tar")
3404
3405 (mkdir-p bin)
3406 (copy-file "grue-hunter/gh.pl"
3407 (string-append bin "/grue-hunter"))
3408 (patch-shebang (string-append bin "/grue-hunter")
3409 (list perl))
3410
3411 (install-file "grue-hunter/AGPLv3.txt" doc)
3412
3413 #t))))
3414 (inputs `(("perl" ,perl)
3415 ("tar" ,tar)
3416 ("gzip" ,gzip)
3417 ("tarball" ,source)))
3418 (home-page "http://jxself.org/grue-hunter.shtml")
3419 (synopsis "Text adventure game")
3420 (description
3421 "Grue Hunter is a text adventure game written in Perl. You must make
3422 your way through an underground cave system in search of the Grue. Can you
3423 capture it and get out alive?")
3424 (license license:agpl3+)))
3425
3426 (define-public lierolibre
3427 (package
3428 (name "lierolibre")
3429 (version "0.5")
3430 (source (origin
3431 (method url-fetch)
3432 (uri (string-append "https://launchpad.net/lierolibre/trunk/"
3433 version "/+download/lierolibre-"
3434 version ".tar.xz"))
3435 (sha256
3436 (base32
3437 "1cf1gvsn4qq190lrf9k5bpjnqwlcfw7pajvdnh7z5r4jqw0rsbl9"))
3438 (patches
3439 (search-patches "lierolibre-check-unaligned-access.patch"
3440 "lierolibre-try-building-other-arch.patch"
3441 "lierolibre-remove-arch-warning.patch"
3442 "lierolibre-newer-libconfig.patch"
3443 "lierolibre-is-free-software.patch"))
3444 (modules '((guix build utils)))
3445 (snippet
3446 '(begin
3447 ;; Delete pre-compiled files.
3448 (delete-file "data/LIERO.CHR")
3449 (delete-file "data/LIERO.SND")
3450 #t))))
3451 (build-system gnu-build-system)
3452 (native-inputs
3453 `(("imagemagick" ,imagemagick)
3454 ("pkg-config" ,pkg-config)
3455 ("util-linux" ,util-linux)
3456 ("sox" ,sox)))
3457 (inputs
3458 `(("boost" ,boost)
3459 ("libconfig" ,libconfig)
3460 ("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer)))
3461 ("zlib" ,zlib)))
3462 (home-page "https://gitlab.com/lierolibre/lierolibre")
3463 (synopsis "Old-school earthworm action game")
3464 (description
3465 "lierolibre is an earthworm action game where you fight another player
3466 (or the computer) underground using a wide array of weapons.
3467
3468 Features:
3469 @itemize
3470 @item 2 worms, 40 weapons, great playability, two game modes: Kill'em All
3471 and Game of Tag, plus AI-players without true intelligence!
3472 @item Dat nostalgia.
3473 @item Extensions via a hidden F1 menu:
3474 @itemize
3475 @item Replays
3476 @item Game controller support
3477 @item Powerlevel palettes
3478 @end itemize
3479 @item Ability to write game variables to plain text files.
3480 @item Ability to load game variables from both EXE and plain text files.
3481 @item Scripts to extract and repack graphics, sounds and levels.
3482 @end itemize
3483
3484 To switch between different window sizes, use F6, F7 and F8, to switch to
3485 fullscreen, use F5 or Alt+Enter.")
3486 ;; Code mainly BSD-2, some parts under Boost 1.0. All assets are WTFPL2.
3487 (license (list license:bsd-2 license:boost1.0 license:wtfpl2))))
3488
3489 (define-public warzone2100
3490 (package
3491 (name "warzone2100")
3492 (version "3.2.3")
3493 (source
3494 (origin
3495 (method url-fetch)
3496 (uri (string-append "mirror://sourceforge/warzone2100/archives/"
3497 "unsupported/Warzone2100-"
3498 (version-major+minor version) "/" version
3499 "/warzone2100-" version ".tar.xz"))
3500 (sha256
3501 (base32 "10kmpr4cby95zwqsl1zwx95d9achli6khq7flv6xmrq30a39xazw"))))
3502 (build-system gnu-build-system)
3503 (arguments
3504 `(#:configure-flags '("--with-distributor=Guix")
3505 #:phases
3506 (modify-phases %standard-phases
3507 (add-after 'unpack 'link-tests-with-qt
3508 (lambda _
3509 (substitute* "tests/Makefile.in"
3510 (("(framework_linktest_LDADD|maptest_LDADD) = " prefix)
3511 (string-append prefix "$(QT5_LIBS) ")))
3512 #t))
3513 (add-after 'unpack 'fix-ivis-linktest
3514 (lambda _
3515 (substitute* "tests/ivis_linktest.cpp"
3516 (("iV_DrawTextRotated.*;")
3517 (string-append "iV_DrawTextRotated(\"Press ESC to exit.\", "
3518 "100, 100, 0.0f, font_regular);")))
3519 #t)))))
3520 (native-inputs `(("gettext" ,gettext-minimal)
3521 ("pkg-config" ,pkg-config)
3522 ("unzip" ,unzip)
3523 ("zip" ,zip)))
3524 (inputs `(("fontconfig" ,fontconfig)
3525 ("freetype" ,freetype)
3526 ("fribidi" ,fribidi)
3527 ("glew" ,glew)
3528 ("harfbuzz" ,harfbuzz)
3529 ("libtheora" ,libtheora)
3530 ("libvorbis" ,libvorbis)
3531 ("libxrandr" ,libxrandr)
3532 ("openal" ,openal)
3533 ("physfs" ,physfs)
3534 ("qtbase" ,qtbase)
3535 ("qtscript" ,qtscript)
3536 ("openssl" ,openssl)
3537 ("sdl2" ,sdl2)))
3538 (home-page "http://wz2100.net")
3539 (synopsis "3D Real-time strategy and real-time tactics game")
3540 (description
3541 "Warzone 2100 offers campaign, multi-player, and single-player skirmish
3542 modes. An extensive tech tree with over 400 different technologies, combined
3543 with the unit design system, allows for a wide variety of possible units and
3544 tactics.")
3545 ; Everything is GPLv2+ unless otherwise specified in COPYING.NONGPL
3546 (license (list license:bsd-3
3547 license:cc0
3548 license:cc-by-sa3.0
3549 license:expat
3550 license:gpl2+
3551 license:lgpl2.1+))))
3552
3553 (define-public starfighter
3554 (package
3555 (name "starfighter")
3556 (version "2.0.0.3")
3557 (source (origin
3558 (method url-fetch)
3559 (uri (string-append
3560 "https://github.com/pr-starfighter/starfighter/releases"
3561 "/download/v" version "/starfighter-"
3562 (version-major+minor version) "-src.tar.gz"))
3563 (sha256
3564 (base32
3565 "13vi5kh9ahws4f52421cbyw0jn7pmbnld358lqfmr6flql7ilj3b"))))
3566 (build-system gnu-build-system)
3567 (native-inputs
3568 `(("pkg-config" ,pkg-config)))
3569 (inputs
3570 `(("pango" ,pango)
3571 ("sdl2" ,sdl2)
3572 ("sdl2-image" ,sdl2-image)
3573 ("sdl2-mixer" ,sdl2-mixer)
3574 ("sdl2-ttf" ,sdl2-ttf)))
3575 (home-page "https://pr-starfighter.github.io/")
3576 (synopsis "2D scrolling shooter game")
3577 (description
3578 "In the year 2579, the intergalactic weapons corporation, WEAPCO, has
3579 dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on
3580 their quest to liberate the galaxy from the clutches of WEAPCO. Along the
3581 way, you will encounter new foes, make new allies, and assist local rebels
3582 in strikes against the evil corporation.")
3583 ;; gfx and music are under CC-BY 3.0, CC-BY-SA 3.0, CC0 or Public Domain.
3584 (license (list license:gpl3+
3585 license:cc-by3.0
3586 license:cc-by-sa3.0
3587 license:cc0
3588 license:public-domain))))
3589
3590 (define-public project-starfighter
3591 (deprecated-package "project-starfighter" starfighter))
3592
3593 (define-public chromium-bsu
3594 (package
3595 (name "chromium-bsu")
3596 (version "0.9.16.1")
3597 (source (origin
3598 (method url-fetch)
3599 (uri (string-append "mirror://sourceforge/chromium-bsu"
3600 "/Chromium B.S.U. source code/"
3601 "chromium-bsu-" version ".tar.gz"))
3602 (sha256
3603 (base32
3604 "0jk2w5b6s6nkzri585bbz16cif2fhqcnl5l1mq3rd98r9nil3hd1"))))
3605 (build-system gnu-build-system)
3606 (native-inputs `(("pkg-config" ,pkg-config)))
3607 (inputs `(("gettext" ,gettext-minimal)
3608 ("glu" ,glu)
3609 ("quesoglc" ,quesoglc)
3610 ("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer)))))
3611 (home-page "http://chromium-bsu.sourceforge.net/")
3612 (synopsis "Fast-paced, arcade-style, top-scrolling space shooter")
3613 (description
3614 "In this game you are the captain of the cargo ship Chromium B.S.U. and
3615 are responsible for delivering supplies to the troops on the front line. Your
3616 ship has a small fleet of robotic fighters which you control from the relative
3617 safety of the Chromium vessel.")
3618 ;; Clarified Artistic License for everything but sound, which is covered
3619 ;; by the Expat License.
3620 (license (list license:clarified-artistic license:expat))))
3621
3622 (define-public tuxpaint
3623 (package
3624 (name "tuxpaint")
3625 (version "0.9.23") ;keep VER_DATE below in sync
3626 (source
3627 (origin
3628 (method url-fetch)
3629 (uri (string-append "mirror://sourceforge/tuxpaint/tuxpaint/"
3630 version "/tuxpaint-" version ".tar.gz"))
3631 (sha256
3632 (base32
3633 "09k9pxi88r3dx6dyjwf9h85d4qpva4i29qz63dc558hg9v21k69l"))
3634 (modules '((guix build utils)))
3635 (snippet
3636 '(begin
3637 ;; Remove win32 directory which contains binary dll's and the
3638 ;; deprecated visualc directory.
3639 (for-each delete-file-recursively '("win32" "visualc"))
3640 (substitute* "Makefile"
3641 ;; Do not rely on $(GPERF) being an absolute file name
3642 (("\\[ -x \\$\\(GPERF\\) \\]")
3643 "$(GPERF) --version >/dev/null 2>&1"))
3644 #t))
3645 (patches (search-patches "tuxpaint-stamps-path.patch"))))
3646 (build-system gnu-build-system)
3647 (native-inputs
3648 `(("gperf" ,gperf)
3649 ("pkg-config" ,pkg-config)))
3650 (inputs
3651 `(("cairo" ,cairo)
3652 ("fribidi" ,fribidi)
3653 ("gettext" ,gettext-minimal)
3654 ("libpng" ,libpng)
3655 ("librsvg" ,librsvg)
3656 ("libpaper" ,libpaper)
3657 ("netpbm" ,netpbm)
3658 ("sdl" ,(sdl-union (list sdl sdl-mixer sdl-ttf sdl-image)))))
3659 ;; TODO: Use system fonts rather than those in data/fonts
3660 (arguments
3661 `(#:make-flags `("VER_DATE=2018-09-02"
3662 "GPERF=gperf" "CC=gcc"
3663 "SDL_PCNAME=sdl SDL_image SDL_mixer SDL_ttf"
3664 ,(string-append "PREFIX=" %output)
3665 "KDE_PREFIX=$(PREFIX)/share/applications"
3666 "KDE_ICON_PREFIX=$(PREFIX)/share/icons/"
3667 "COMPLETIONDIR=$(PREFIX)/etc/bash_completion.d")
3668 #:parallel-build? #f ;fails on some systems
3669 #:tests? #f ;No tests
3670 #:phases (modify-phases %standard-phases
3671 (delete 'configure) ;no configure phase
3672 (add-before 'install 'no-sys-cache
3673 (lambda _ ;do not rebuild system conf cache
3674 (substitute* "Makefile"
3675 (("kbuildsycoca4") ""))
3676 #t))
3677 (add-after 'install 'fix-import
3678 (lambda* (#:key inputs outputs #:allow-other-keys)
3679 (let* ((out (assoc-ref outputs "out"))
3680 (net (assoc-ref inputs "netpbm"))
3681 (tpi (string-append out "/bin/tuxpaint-import")))
3682 (substitute* tpi
3683 ;; Point to installation prefix so that the default
3684 ;; configure file is found.
3685 (("/usr/local") out))
3686 ;; tuxpaint-import uses a bunch of programs from
3687 ;; netpbm, so make sure it knows where those are
3688 (wrap-program tpi
3689 `("PATH" ":" prefix
3690 (,(string-append net "/bin"))))))))))
3691 (native-search-paths
3692 (list (search-path-specification
3693 (variable "TUXPAINT_STAMPS_PATH")
3694 (files '("share/tuxpaint/stamps")))))
3695 (home-page "http://www.tuxpaint.org")
3696 (synopsis "Drawing software for children")
3697 (description
3698 "Tux Paint is a free drawing program designed for young children (kids
3699 ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;
3700 and an encouraging cartoon mascot who helps guide children as they use the
3701 program. It provides a blank canvas and a variety of drawing tools to help
3702 your child be creative.")
3703 (license license:gpl2+)))
3704
3705 (define-public tuxpaint-stamps
3706 (package
3707 (name "tuxpaint-stamps")
3708 (version "2018.09.01")
3709 (source
3710 (origin
3711 (method url-fetch)
3712 (uri (string-append "mirror://sourceforge/tuxpaint/tuxpaint-stamps/"
3713 (string-map (λ (x) (if (eq? x #\.) #\- x)) version)
3714 "/tuxpaint-stamps-" version ".tar.gz"))
3715 (sha256
3716 (base32
3717 "1skr23k27yj3vgwfazpzxp90lb2a278gxrkr3bxw7az6zpkmb3yp"))))
3718 (build-system trivial-build-system)
3719 (native-inputs
3720 `(("tar" ,tar)
3721 ("gzip" ,gzip)))
3722 (arguments
3723 `(#:modules ((guix build utils))
3724 #:builder (begin
3725 (use-modules (guix build utils))
3726 (setenv "PATH"
3727 (string-append
3728 (assoc-ref %build-inputs "tar") "/bin" ":"
3729 (assoc-ref %build-inputs "gzip") "/bin"))
3730 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
3731 (chdir (string-append ,name "-" ,version))
3732 (let ((dir (string-append %output "/share/tuxpaint/stamps")))
3733 (mkdir-p dir)
3734 (copy-recursively "stamps" dir))
3735 #t)))
3736 (home-page (package-home-page tuxpaint))
3737 (synopsis "Stamp images for Tux Paint")
3738 (description
3739 "This package contains a set of \"Rubber Stamp\" images which can be used
3740 with the \"Stamp\" tool within Tux Paint.")
3741 (license license:gpl2+)))
3742
3743 (define-public tuxpaint-config
3744 (package
3745 (name "tuxpaint-config")
3746 (version "0.0.14") ;keep VER_DATE below in sync
3747 (source
3748 (origin
3749 (method url-fetch)
3750 (uri (string-append "mirror://sourceforge/tuxpaint/tuxpaint-config/"
3751 version "/tuxpaint-config-" version ".tar.gz"))
3752 (sha256
3753 (base32
3754 "0zkgxk436nqcp43zghkfmh397c7dvh5bwn2as7gwvv208bzyij6g"))))
3755 (build-system gnu-build-system)
3756 (native-inputs
3757 `(("gettext" ,gettext-minimal)))
3758 (inputs
3759 `(("fltk" ,fltk)
3760 ("libpaper" ,libpaper)
3761 ;; TODO: Should the following be propagated by fltk?
3762 ("libx11" ,libx11)
3763 ("libxft" ,libxft)
3764 ("mesa" ,mesa)))
3765 (arguments
3766 `(#:make-flags `("VER_DATE=2018-09-01"
3767 "CONFDIR=/etc/tuxpaint" ;don't write to store
3768 ,(string-append "PREFIX=" %output)
3769 "GNOME_PREFIX=$(PREFIX)")
3770 #:parallel-build? #f ;race conditions
3771 #:tests? #f ;no tests
3772 #:phases (modify-phases %standard-phases
3773 (delete 'configure) ;no configure phase
3774 (add-before 'install 'gzip-no-name
3775 (lambda* _
3776 (substitute* "Makefile"
3777 ;; tuxpaint-config compresses its own documentation;
3778 ;; make sure it uses flags for reproducibility.
3779 (("gzip") "gzip --no-name"))))
3780 (add-before 'install 'make-install-dirs
3781 (lambda* (#:key outputs #:allow-other-keys)
3782 (let ((out (assoc-ref outputs "out")))
3783 (mkdir-p (string-append out "/bin"))
3784 #t))))))
3785 (home-page (package-home-page tuxpaint))
3786 (synopsis "Configure Tux Paint")
3787 (description
3788 "Tux Paint Config is a graphical configuration editor for Tux Paint.")
3789 (license license:gpl2))) ;no "or later" present
3790
3791 (define-public supertux
3792 (package
3793 (name "supertux")
3794 (version "0.6.1")
3795 (source (origin
3796 (method url-fetch)
3797 (uri (string-append "https://github.com/SuperTux/supertux/"
3798 "releases/download/v" version "/SuperTux-v"
3799 version "-Source.tar.gz"))
3800 (file-name (string-append name "-" version ".tar.gz"))
3801 (sha256
3802 (base32
3803 "0lqch5gcq6ccnspy93z9r13bp8w2j1vrd8jhvk5kp4qhrd1f069s"))
3804 (patches
3805 (search-patches "supertux-unbundle-squirrel.patch"))))
3806 (arguments
3807 '(#:tests? #f
3808 #:configure-flags '("-DINSTALL_SUBDIR_BIN=bin"
3809 "-DUSE_SYSTEM_PHYSFS=ON")
3810 #:phases
3811 (modify-phases %standard-phases
3812 (add-after 'unpack 'patch-squirrel-path
3813 (lambda* (#:key inputs #:allow-other-keys)
3814 (let ((squirrel (assoc-ref inputs "squirrel")))
3815 (substitute* "CMakeLists.txt"
3816 (("set\\(SQUIRREL_PREFIX.*")
3817 (string-append "set(SQUIRREL_PREFIX " squirrel ")"))
3818 (("add_dependencies\\(supertux2_lib squirrel\\)") "")
3819 (("\\$\\{SQUIRREL_PREFIX\\}/include")
3820 (string-append "${SQUIRREL_PREFIX}/include/squirrel"))))
3821 #t)))))
3822 (build-system cmake-build-system)
3823 (inputs `(("sdl2" ,sdl2)
3824 ("sdl2-image" ,sdl2-image)
3825 ("sdl2-mixer" ,sdl2-mixer)
3826 ("openal" ,openal)
3827 ("mesa" ,mesa)
3828 ("glew" ,glew)
3829 ("libvorbis" ,libvorbis)
3830 ("libogg" ,libogg)
3831 ("physfs" ,physfs)
3832 ("curl" ,curl)
3833 ("boost" ,boost)
3834 ("freetype" ,freetype)
3835 ("squirrel" ,squirrel)))
3836 (native-inputs
3837 `(("pkg-config" ,pkg-config)))
3838 (synopsis "2D platformer game")
3839 (description "SuperTux is a classic 2D jump'n run sidescroller game in
3840 a style similar to the original Super Mario games.")
3841 (home-page "https://supertux.org/")
3842 (license license:gpl3+)))
3843
3844 (define-public tintin++
3845 (package
3846 (name "tintin++")
3847 (version "2.02.00")
3848 (source
3849 (origin
3850 (method url-fetch)
3851 (uri (string-append "mirror://sourceforge/tintin/TinTin++ Source Code/"
3852 (string-drop-right version 1)
3853 "/tintin-" version ".tar.gz"))
3854 (sha256
3855 (base32
3856 "02qmbhzhh2sdy5b37v54gihs9k4bxmlz3j96gyx7icvx2grkbg5i"))))
3857 (inputs
3858 `(("gnutls" ,gnutls)
3859 ("pcre" ,pcre)
3860 ("readline" ,readline)
3861 ("zlib" ,zlib)))
3862 (arguments
3863 '(#:tests? #f ; no test suite
3864 #:phases
3865 (modify-phases %standard-phases
3866 ;; The source is in tt/src.
3867 (add-before 'configure 'chdir
3868 (lambda _
3869 (chdir "src")
3870 #t)))))
3871 (build-system gnu-build-system)
3872 (home-page "https://tintin.mudhalla.net/")
3873 (synopsis "MUD client")
3874 (description
3875 "TinTin++ is a MUD client which supports MCCP (Mud Client Compression
3876 Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET
3877 options used by MUDs, as well as those required to login via telnet on
3878 Linux / Mac OS X servers, and an auto mapper with a VT100 map display.")
3879 (license license:gpl3+)))
3880
3881 (define-public laby
3882 (package
3883 (name "laby")
3884 (version "0.6.4")
3885 (source
3886 (origin (method git-fetch)
3887 (uri (git-reference
3888 (url "https://github.com/sgimenez/laby.git")
3889 (commit (string-append name "-" version))))
3890 (file-name (git-file-name name version))
3891 (sha256
3892 (base32
3893 "12fq9hhrxpzgfinmj9ra9ckss9yficwdlrmgjvvsq7agvh3sgyl1"))
3894 (patches (search-patches "laby-make-install.patch"))))
3895 (build-system gnu-build-system)
3896 (inputs
3897 `(("lablgtk" ,lablgtk)
3898 ("ocaml" ,ocaml)
3899 ("ocaml-findlib" ,ocaml-findlib)
3900 ("ocamlbuild" ,ocamlbuild)))
3901 (arguments
3902 '(#:phases
3903 (modify-phases %standard-phases
3904 (delete 'configure)
3905 (add-before 'build 'allow-unsafe-strings
3906 ;; Fix a build failure with ocaml >=4.06.0.
3907 ;; See <https://github.com/sgimenez/laby/issues/53>.
3908 (lambda _
3909 (setenv "OCAMLPARAM" "safe-string=0,_")
3910 #t))
3911 (add-before 'build 'set-library-path
3912 (lambda* (#:key inputs #:allow-other-keys)
3913 (let ((lablgtk (assoc-ref inputs "lablgtk")))
3914 (setenv "LD_LIBRARY_PATH"
3915 (string-append lablgtk "/lib/ocaml/stublibs"))))))
3916 #:tests? #f ; no 'check' target
3917 #:make-flags
3918 (list (string-append "PREFIX=" (assoc-ref %outputs "out")) "all")))
3919 (home-page "https://sgimenez.github.io/laby/")
3920 (synopsis "Programming game")
3921 (description "Learn programming, playing with ants and spider webs ;-)
3922 Your robot ant can be programmed in many languages: OCaml, Python, C, C++,
3923 Java, Ruby, Lua, JavaScript, Pascal, Perl, Scheme, Vala, Prolog. Experienced
3924 programmers may also add their own favorite language.")
3925 (license license:gpl3+)))
3926
3927 (define-public bambam
3928 (package
3929 (name "bambam")
3930 (version "1.0.0")
3931 (source
3932 (origin
3933 (method git-fetch)
3934 (uri (git-reference
3935 (url "https://github.com/porridge/bambam")
3936 (commit (string-append "v" version))))
3937 (file-name (git-file-name name version))
3938 (sha256
3939 (base32 "18cwd1wpyyx8y61cags9bkdhx9x858xicc4y1c9c2s0xjmgzhl3i"))))
3940 (build-system python-build-system)
3941 (arguments
3942 `(#:tests? #f ; no tests
3943 #:phases
3944 (modify-phases %standard-phases
3945 (delete 'build) ; nothing to build
3946 (replace 'install
3947 (lambda* (#:key outputs #:allow-other-keys)
3948 (let* ((out (assoc-ref outputs "out"))
3949 (bin (string-append out "/bin"))
3950 (share (string-append out "/share")))
3951 (mkdir-p bin)
3952 (copy-file "bambam.py" (string-append bin "/bambam"))
3953 (install-file "bambam.6" (string-append share "/man/man6"))
3954 (copy-recursively "data" (string-append share "/bambam/data")))
3955 #t)))))
3956 (inputs
3957 `(("python-pygame" ,python-pygame)))
3958 (home-page "https://github.com/porridge/bambam")
3959 (synopsis "Keyboard mashing and doodling game for babies")
3960 (description "Bambam is a simple baby keyboard (and gamepad) masher
3961 application that locks the keyboard and mouse and instead displays bright
3962 colors, pictures, and sounds.")
3963 (license license:gpl3+)))
3964
3965 (define-public mrrescue
3966 (package
3967 (name "mrrescue")
3968 (version "1.02e")
3969 (source (origin
3970 (method url-fetch)
3971 (uri (string-append
3972 "https://github.com/SimonLarsen/mrrescue/releases/"
3973 "download/" version "/mrrescue" version ".love"))
3974 (file-name (string-append name "-" version ".love"))
3975 (sha256
3976 (base32
3977 "0jwzbwkgp1l5ia6c7s760gmdirbsncp6nfqp7vqdqsfb63la9gl2"))))
3978 (build-system trivial-build-system)
3979 (arguments
3980 `(#:modules ((guix build utils))
3981 #:builder
3982 (begin
3983 (use-modules (guix build utils))
3984 (let* ((out (assoc-ref %outputs "out"))
3985 (script (string-append out "/bin/" ,name))
3986 (data (string-append out "/share/" ,name))
3987 (source (assoc-ref %build-inputs "source"))
3988 (unzip (string-append (assoc-ref %build-inputs "unzip")
3989 "/bin/unzip"))
3990 (patch (string-append (assoc-ref %build-inputs "patch")
3991 "/bin/patch"))
3992 (bash (string-append (assoc-ref %build-inputs "bash")
3993 "/bin/bash"))
3994 (love (string-append (assoc-ref %build-inputs "love")
3995 "/bin/love")))
3996
3997 (mkdir-p (dirname script))
3998 (with-output-to-file script
3999 (lambda ()
4000 (format #t "#!~a~%" bash)
4001 (format #t "exec -a ~a \"~a\" \"~a\"~%" ,name love data)))
4002 (chmod script #o755)
4003
4004 ;; The better way to package this game would be to install *only* the
4005 ;; script above, pointing to the unextracted .love file in the store.
4006 ;; However, mrrescue 1.02e needs to be patched to work with Love 11.
4007 ;; Instead of extracting the .love file, patching it, and re-zipping
4008 ;; it to the store, simply point the script to the extracted patched
4009 ;; data directory directly.
4010 (mkdir-p data)
4011 (with-directory-excursion data
4012 (invoke unzip source)
4013 (invoke patch "-p1" "-i"
4014 (assoc-ref %build-inputs "love-11.patch")))
4015 #t))))
4016 (native-inputs
4017 `(("unzip" ,unzip)
4018 ("patch" ,patch)
4019 ("love-11.patch" ,(search-patch "mrrescue-support-love-11.patch"))))
4020 (inputs
4021 `(("bash" ,bash)
4022 ("love" ,love)))
4023 (home-page "http://tangramgames.dk/games/mrrescue")
4024 (synopsis "Arcade-style fire fighting game")
4025 (description
4026 "Mr. Rescue is an arcade styled 2d action game centered around evacuating
4027 civilians from burning buildings. The game features fast-paced fire
4028 extinguishing action, intense boss battles, a catchy soundtrack, and lots of
4029 throwing people around in pseudo-randomly generated buildings.")
4030 (license (list license:zlib ; for source code
4031 license:cc-by-sa3.0)))) ; for graphics and music assets
4032
4033 (define-public hyperrogue
4034 (package
4035 (name "hyperrogue")
4036 (version "11.2d")
4037 ;; When updating this package, be sure to update the "hyperrogue-data"
4038 ;; origin in native-inputs.
4039 (source (origin
4040 (method url-fetch)
4041 (uri (string-append
4042 "https://www.roguetemple.com/z/hyper/hyperrogue"
4043 (string-join (string-split version #\.) "")
4044 "-src.tgz"))
4045 (sha256
4046 (base32
4047 "1b532s94zv1jsni7bvh848m42arxcclsr0x3n7c689iamwqzrxmn"))))
4048 (build-system gnu-build-system)
4049 (arguments
4050 `(#:tests? #f ; no check target
4051 #:make-flags '("HYPERROGUE_USE_GLEW=1"
4052 "HYPERROGUE_USE_PNG=1")
4053 #:phases
4054 (modify-phases %standard-phases
4055 (add-after 'set-paths 'set-sdl-paths
4056 (lambda* (#:key inputs #:allow-other-keys)
4057 (setenv "CPATH"
4058 (string-append (getenv "CPATH") ":"
4059 (assoc-ref inputs "sdl-union")
4060 "/include/SDL"))))
4061 (replace 'configure
4062 (lambda* (#:key inputs outputs #:allow-other-keys)
4063 (let* ((out (assoc-ref outputs "out"))
4064 (share-dir (string-append out "/share/hyperrogue"))
4065 (dejavu-dir (string-append
4066 (assoc-ref inputs "font-dejavu")
4067 "/share/fonts/truetype"))
4068 (dejavu-font "DejaVuSans-Bold.ttf")
4069 (music-file "hyperrogue-music.txt"))
4070 ;; Fix font and music paths.
4071 (substitute* "basegraph.cpp"
4072 ((dejavu-font)
4073 (string-append dejavu-dir "/" dejavu-font)))
4074 (substitute* music-file
4075 (("\\*/")
4076 (string-append share-dir "/sounds/")))
4077 (substitute* "sound.cpp"
4078 (("musicfile = \"\"")
4079 (string-append "musicfile = \""
4080 share-dir "/" music-file "\"")))
4081 ;; Disable build machine CPU optimizations and warnings treated
4082 ;; as errors.
4083 (substitute* "Makefile"
4084 (("-march=native") "")
4085 (("-Werror") "")))
4086 #t))
4087 (replace 'install
4088 (lambda* (#:key inputs outputs #:allow-other-keys)
4089 (let* ((out (assoc-ref outputs "out"))
4090 (bin (string-append out "/bin"))
4091 (share-dir (string-append out "/share/hyperrogue")))
4092 (mkdir-p bin)
4093 (install-file "hyperrogue" bin)
4094 (install-file "hyperrogue-music.txt" share-dir))
4095 #t))
4096 (add-after 'install 'install-data
4097 (lambda* (#:key inputs outputs #:allow-other-keys)
4098 (let* ((data (assoc-ref inputs "hyperrogue-data"))
4099 (out (assoc-ref outputs "out"))
4100 (sounds (string-append out "/share/hyperrogue/sounds"))
4101 (unzip (string-append (assoc-ref inputs "unzip") "/bin/unzip")))
4102 ;; Extract media license information into sounds directory.
4103 (invoke unzip "-j" data
4104 (string-append
4105 "hyperrogue"
4106 (string-join (string-split ,version #\.) "")
4107 "/sounds/credits.txt") "-d" sounds)
4108 ;; Extract sounds and music into sounds directory.
4109 (invoke "unzip" "-j" data
4110 (string-append
4111 "hyperrogue"
4112 (string-join (string-split ,version #\.) "")
4113 "/*.ogg") "-d" sounds)))))))
4114 (native-inputs
4115 `(("hyperrogue-data"
4116 ,(origin
4117 (method url-fetch)
4118 (uri
4119 (string-append
4120 "https://www.roguetemple.com/z/hyper/hyperrogue"
4121 (string-join (string-split version #\.) "")
4122 "-win.zip"))
4123 (sha256
4124 (base32
4125 "0vq4l1xaqpjj3hmxn1vn2b3bbkn1hrag42ck9f30blinv347bwhf"))))
4126 ("unzip" ,unzip)))
4127 (inputs
4128 `(("font-dejavu" ,font-dejavu)
4129 ("glew" ,glew)
4130 ("libpng" ,libpng)
4131 ("sdl-union" ,(sdl-union (list sdl
4132 sdl-gfx
4133 sdl-mixer
4134 sdl-ttf)))))
4135 (home-page "https://www.roguetemple.com/z/hyper/")
4136 (synopsis "Non-euclidean graphical rogue-like game")
4137 (description
4138 "HyperRogue is a game in which the player collects treasures and fights
4139 monsters -- rogue-like but for the fact that it is played on the hyperbolic
4140 plane and not in euclidean space.
4141
4142 In HyperRogue, the player can move through different parts of the world, which
4143 are home to particular creatures and may be subject to their own rules of
4144 \"physics\".
4145
4146 While the game can use ASCII characters to display the the classical rogue
4147 symbols, it still needs graphics to render the non-euclidean world.")
4148 (license (list license:bsd-3 ; glew.c, mtrand.*
4149 license:cc-by-sa3.0 ; music
4150 license:cc-by-sa4.0 ; sounds
4151 license:cc0
4152 license:public-domain ; direntx.*, some sounds
4153 license:zlib ; savepng.*
4154 license:gpl2+)))) ; remaining files
4155
4156 (define-public kobodeluxe
4157 (package
4158 (name "kobodeluxe")
4159 (version "0.5.1")
4160 (source (origin
4161 (method url-fetch)
4162 (uri (string-append "http://olofson.net/kobodl/download/KoboDeluxe-"
4163 version ".tar.bz2"))
4164 (sha256
4165 (base32
4166 "0b2wvdpnmaibsy419c16dfwj5kvd3pccby2aaqvm964x74592yqg"))
4167 (patches (search-patches
4168 "kobodeluxe-const-charp-conversion.patch"
4169 "kobodeluxe-enemies-pipe-decl.patch"
4170 "kobodeluxe-graphics-window-signed-char.patch"
4171 "kobodeluxe-manpage-minus-not-hyphen.patch"
4172 "kobodeluxe-midicon-segmentation-fault.patch"
4173 "kobodeluxe-paths.patch"))))
4174 (build-system gnu-build-system)
4175 (arguments
4176 '(#:configure-flags
4177 (list (string-append "CPPFLAGS=-I"
4178 (assoc-ref %build-inputs "sdl-union")
4179 "/include/SDL"))))
4180 (inputs
4181 `(("glu" ,glu)
4182 ("sdl-union" ,(sdl-union (list sdl sdl-image)))))
4183 (synopsis "Shooter with space station destruction")
4184 (description
4185 "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game
4186 for Un*x systems with X11.")
4187 (home-page "http://olofson.net/kobodl/")
4188 (license license:gpl2+)))
4189
4190 (define-public freeciv
4191 (package
4192 (name "freeciv")
4193 (version "2.6.1")
4194 (source
4195 (origin
4196 (method url-fetch)
4197 (uri (list (string-append
4198 "http://files.freeciv.org/stable/freeciv-"
4199 version ".tar.bz2")
4200 (string-append
4201 "mirror://sourceforge/freeciv/Freeciv%20"
4202 (version-major+minor version) "/" version
4203 "/freeciv-" version ".tar.bz2")))
4204 (sha256
4205 (base32 "1qmrhrwm0ryvsh1zsxcxj128lhyvaxap7k39sam3hh8rl0fq9rnc"))))
4206 (build-system gnu-build-system)
4207 (inputs
4208 `(("curl" ,curl)
4209 ("cyrus-sasl" ,cyrus-sasl)
4210 ("gtk+" ,gtk+)
4211 ("sdl-mixer" ,sdl-mixer)
4212 ("zlib" ,zlib)))
4213 (native-inputs
4214 `(("pkg-config" ,pkg-config)))
4215 (home-page "http://www.freeciv.org/")
4216 (synopsis "Turn-based empire building strategy game")
4217 (description "Freeciv is a turn-based empire building strategy game
4218 inspired by the history of human civilization. The game commences in
4219 prehistory and your mission is to lead your tribe from the Stone Age
4220 into the Space Age.")
4221 (license license:gpl2+)))
4222
4223 (define-public no-more-secrets
4224 (package
4225 (name "no-more-secrets")
4226 (version "0.3.3")
4227 (source
4228 (origin
4229 (method git-fetch)
4230 (uri (git-reference
4231 (url "https://github.com/bartobri/no-more-secrets.git")
4232 (commit (string-append "v" version))))
4233 (file-name (git-file-name name version))
4234 (sha256
4235 (base32 "1zfv4qabikf8w9winsr4brxrdvs3f0d7xvydksyx8bydadsm2v2h"))))
4236 (build-system gnu-build-system)
4237 (arguments
4238 `(#:tests? #f
4239 #:make-flags (list "CC=gcc" "all-ncurses"
4240 (string-append "prefix="
4241 (assoc-ref %outputs "out")))
4242 #:phases
4243 (modify-phases %standard-phases
4244 (delete 'configure))))
4245 (inputs
4246 `(("ncurses" ,ncurses)))
4247 (home-page "https://github.com/bartobri/no-more-secrets")
4248 (synopsis "Recreation of data decryption effect in \"Sneakers\"")
4249 (description
4250 "@code{No More Secrets} provides a command line tool called \"nms\"
4251 that recreates the famous data decryption effect seen on screen in the 1992
4252 movie \"Sneakers\".
4253
4254 This command works on piped data. Pipe any ASCII or UTF-8 text to nms, and
4255 it will apply the hollywood effect, initially showing encrypted data, then
4256 starting a decryption sequence to reveal the original plaintext characters.")
4257 (license license:expat)))
4258
4259 (define-public megaglest-data
4260 (package
4261 (name "megaglest-data")
4262 (version "3.13.0")
4263 (source
4264 (origin
4265 (method url-fetch)
4266 (uri (string-append
4267 "https://github.com/MegaGlest/megaglest-data"
4268 "/releases/download/" version "/megaglest-data-"
4269 version ".tar.xz"))
4270 (sha256
4271 (base32
4272 "0ipgza33z89fw3si32iafm981f3fvm0zldvbxj29whghd2k3rpj3"))))
4273 (build-system cmake-build-system)
4274 (arguments
4275 `(#:tests? #f))
4276 (home-page "https://megaglest.org/")
4277 (synopsis "Data files for MegaGlest")
4278 (description "This package contains the data files required for MegaGlest.")
4279 (license license:cc-by-sa3.0)))
4280
4281 (define-public megaglest
4282 (package
4283 (name "megaglest")
4284 (version "3.13.0")
4285 (source
4286 (origin
4287 (method url-fetch)
4288 (uri (string-append
4289 "https://github.com/MegaGlest/megaglest-source"
4290 "/releases/download/" version "/megaglest-source-"
4291 version ".tar.xz"))
4292 (sha256
4293 (base32
4294 "1ffck3ii1wp5k3nn5p0ga06jgp7pzk4zw0xln3xim2w7qrxzdzh9"))))
4295 (build-system cmake-build-system)
4296 (inputs
4297 `(("curl" ,curl)
4298 ("fontconfig" ,fontconfig)
4299 ("ftgl" ,ftgl)
4300 ("glew" ,glew)
4301 ("libjpeg-turbo" ,libjpeg-turbo)
4302 ("megaglest-data" ,megaglest-data)
4303 ("mesa" ,mesa)
4304 ("miniupnpc" ,miniupnpc)
4305 ("openal" ,openal)
4306 ("libircclient" ,libircclient)
4307 ("libpng" ,libpng)
4308 ("libvorbis" ,libvorbis)
4309 ("lua" ,lua)
4310 ("sdl2" ,sdl2)
4311 ("wxwidgets" ,wxwidgets)))
4312 (native-inputs
4313 `(("cppunit" ,cppunit)
4314 ("pkg-config" ,pkg-config)))
4315 (arguments
4316 `(#:configure-flags
4317 (list (string-append "-DCUSTOM_DATA_INSTALL_PATH="
4318 (assoc-ref %build-inputs "megaglest-data")
4319 "/share/megaglest")
4320 "-DBUILD_MEGAGLEST_TESTS=ON")
4321 #:phases
4322 (modify-phases %standard-phases
4323 (add-after 'unpack 'fix-ini-search-path
4324 (lambda* (#:key outputs #:allow-other-keys)
4325 (substitute* "source/glest_game/global/config.cpp"
4326 (("/usr/share/megaglest/")
4327 (string-append (assoc-ref outputs "out")
4328 "/share/megaglest/"))))))
4329 #:test-target "megaglest_tests"))
4330 (home-page "https://megaglest.org/")
4331 (synopsis "3D real-time strategy (RTS) game")
4332 (description "MegaGlest is a cross-platform 3D real-time strategy (RTS)
4333 game, where you control the armies of one of seven different factions: Tech,
4334 Magic, Egypt, Indians, Norsemen, Persian or Romans.")
4335 (license license:gpl2+)))
4336
4337 (define-public freegish
4338 (let ((commit "8795cd7adc95957883f2d3465eb9036a774667a7")
4339 (revision "1"))
4340 (package
4341 (name "freegish")
4342 (version (string-append "0-" revision "." (string-take commit 9)))
4343 (source (origin
4344 (method git-fetch)
4345 (uri (git-reference
4346 (url "https://github.com/freegish/freegish.git")
4347 (commit commit)))
4348 (file-name (git-file-name name version))
4349 (sha256
4350 (base32
4351 "1p1zf5qqagmcpi1db2bs02cnalpy3qiymp6yzan7k1bhmv859gsx"))
4352 (modules '((guix build utils)))
4353 ;; The audio files in the "music" directory are licensed under
4354 ;; CC-BY-NC, so we delete them.
4355 (snippet
4356 '(begin
4357 (delete-file-recursively "music")
4358 #t))))
4359 (build-system cmake-build-system)
4360 (arguments
4361 `(#:tests? #f ; no tests included
4362 #:configure-flags
4363 (list "-DCMAKE_INSTALL_FHS=ON")
4364 #:phases
4365 (modify-phases %standard-phases
4366 (add-after 'unpack 'set-DATAPATH
4367 (lambda* (#:key outputs #:allow-other-keys)
4368 (substitute* "CMakeLists.txt"
4369 (("^option\\(INSTALL_FHS" line)
4370 (string-append "add_definitions(-DDATAPATH=\""
4371 (assoc-ref outputs "out") "/share/freegish\")\n"
4372 line)))
4373 #t)))))
4374 (inputs
4375 `(("sdl-union" ,(sdl-union (list sdl sdl-mixer)))
4376 ("openal" ,openal)
4377 ("libvorbis" ,libvorbis)
4378 ("libogg" ,libogg)
4379 ("mesa" ,mesa)
4380 ("libpng" ,libpng)
4381 ("zlib" ,zlib)))
4382 (home-page "https://github.com/freegish/freegish")
4383 (synopsis "Side-scrolling physics platformer with a ball of tar")
4384 (description "In FreeGish you control Gish, a ball of tar who lives
4385 happily with his girlfriend Brea, until one day a mysterious dark creature
4386 emerges from a sewer hole and pulls her below ground.")
4387 ;; The textures are available under the Expat license. All other assets
4388 ;; (including levels) are covered under CC-BY-SA or public domain. The
4389 ;; source code is under GPLv2+.
4390 (license (list license:gpl2+
4391 license:expat
4392 license:public-domain
4393 license:cc-by-sa3.0)))))
4394
4395 (define-public cdogs-sdl
4396 (package
4397 (name "cdogs-sdl")
4398 (version "0.6.9")
4399 (source (origin
4400 (method git-fetch)
4401 (uri (git-reference
4402 (url "https://github.com/cxong/cdogs-sdl.git")
4403 (commit version)))
4404 (file-name (git-file-name name version))
4405 (sha256
4406 (base32
4407 "13gyv2hzk43za1n3lsjnd5v64xlzfzq7n10scd1rcbsnk1n007zr"))))
4408 (build-system cmake-build-system)
4409 (arguments
4410 `(#:configure-flags
4411 (list (string-append "-DCDOGS_DATA_DIR="
4412 (assoc-ref %outputs "out")
4413 "/share/cdogs-sdl/"))))
4414 (inputs
4415 `(("mesa" ,mesa)
4416 ("sdl2" ,sdl2)
4417 ("sdl2-image" ,sdl2-image)
4418 ("sdl2-mixer" ,sdl2-mixer)))
4419 (home-page "https://cxong.github.io/cdogs-sdl/")
4420 (synopsis "Classic overhead run-and-gun game")
4421 (description "C-Dogs SDL is a classic overhead run-and-gun game,
4422 supporting up to 4 players in co-op and deathmatch modes. Customize your
4423 player, choose from many weapons, and blast, slide and slash your way through
4424 over 100 user-created campaigns.")
4425 ;; GPLv2+ for code (includes files under BSD-2 and BSD-3),
4426 ;; CC0/CC-BY/CC-BY-SA for assets.
4427 (license (list license:gpl2+
4428 license:bsd-2
4429 license:bsd-3
4430 license:cc0
4431 license:cc-by3.0
4432 license:cc-by-sa3.0))))
4433
4434 (define-public kiki
4435 (package
4436 (name "kiki")
4437 (version "1.0.2")
4438 (source (origin
4439 (method url-fetch)
4440 (uri (string-append "mirror://sourceforge/kiki/kiki-src/"
4441 version "/kiki-" version "-src.tgz"))
4442 (sha256
4443 (base32
4444 "0ihjdsxbn8z3cz0gpcprafiipcqaiskgdnh1rhmw4qff8dszalbn"))
4445 (modules '((guix build utils)))
4446 (snippet
4447 '(begin
4448 (for-each delete-file (find-files "." "\\.dll$"))
4449 #t))
4450 (patches
4451 (search-patches "kiki-level-selection-crash.patch"
4452 "kiki-makefile.patch"
4453 "kiki-missing-includes.patch"
4454 "kiki-portability-64bit.patch"))))
4455 (build-system gnu-build-system)
4456 (arguments
4457 `(#:tests? #f ; there are no tests
4458 #:make-flags '("CXX=g++")
4459 #:phases
4460 (modify-phases %standard-phases
4461 (replace 'configure
4462 (lambda* (#:key inputs outputs #:allow-other-keys)
4463 (setenv "CPLUS_INCLUDE_PATH"
4464 (string-append (assoc-ref inputs "sdl-union")
4465 "/include/SDL:"
4466 (assoc-ref inputs "python")
4467 "/include/python2.7"))
4468 (substitute* "src/main/main.cpp"
4469 (("#include <SDL.h>" line)
4470 (string-append line "
4471 #define K_INCLUDE_GLUT
4472 #include \"KIncludeTools.h\""))
4473 (("// initialize SDL" line)
4474 (string-append "glutInit(&argc,argv);\n" line)))
4475 (substitute* "src/main/KikiController.cpp"
4476 (("getenv\\(\"KIKI_HOME\"\\)")
4477 (string-append "\"" (assoc-ref outputs "out") "/share/kiki/\"")))
4478 (substitute* "linux/Makefile"
4479 (("CXXOPTS =" line)
4480 (string-append line " -fpermissive"))
4481 (("PYTHON_VERSION=.*") "PYTHON_VERSION=2.7")
4482 (("PYTHONHOME =.*")
4483 (string-append "PYTHONHOME = "
4484 (assoc-ref inputs "python")
4485 "/lib/python2.7/"))
4486 (("\\$\\(GLLIBS\\)" line)
4487 (string-append line " -lm -lpython2.7")))
4488 (substitute* "src/main/KikiPythonWidget.h"
4489 (("#define __KikiPythonWidget" line)
4490 (string-append line "\n#include \"KikiPython.h\"")))
4491 #t))
4492 (add-before 'build 'build-kodilib
4493 (lambda* (#:key make-flags #:allow-other-keys)
4494 (with-directory-excursion "kodilib/linux"
4495 (apply invoke "make" make-flags))))
4496 (add-after 'build-kodilib 'chdir
4497 (lambda _ (chdir "linux") #t))
4498 (replace 'install
4499 (lambda* (#:key outputs #:allow-other-keys)
4500 (let* ((out (assoc-ref outputs "out"))
4501 (bin (string-append out "/bin"))
4502 (share (string-append out "/share/kiki")))
4503 (mkdir-p bin)
4504 (mkdir-p share)
4505 (install-file "kiki" bin)
4506 (copy-recursively "../py" (string-append share "/py"))
4507 (copy-recursively "../sound" (string-append share "/sound"))
4508 #t))))))
4509 (inputs
4510 `(("glu" ,glu)
4511 ;; Kiki builds fine with freeglut 3.0.0 but segfaults on start.
4512 ("freeglut" ,freeglut-2.8)
4513 ("sdl-union" ,(sdl-union (list sdl
4514 sdl-mixer
4515 sdl-image)))
4516 ("python" ,python-2)))
4517 (native-inputs
4518 `(("swig" ,swig)))
4519 (home-page "http://kiki.sourceforge.net/")
4520 (synopsis "3D puzzle game")
4521 (description "Kiki the nano bot is a 3D puzzle game. It is basically a
4522 mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a
4523 small robot living in the nano world, repair its maker.")
4524 ;; See <http://metadata.ftp-master.debian.org/changelogs/main/k/
4525 ;; kiki-the-nano-bot/kiki-the-nano-bot_1.0.2+dfsg1-4_copyright>
4526 ;; for a statement from the author.
4527 (license license:public-domain)))
4528
4529 (define-public kiki-the-nano-bot
4530 (deprecated-package "kiki-the-nano-bot" kiki))
4531
4532 (define-public teeworlds
4533 (package
4534 (name "teeworlds")
4535 (version "0.7.4")
4536 (source (origin
4537 (method git-fetch)
4538 (uri (git-reference
4539 (url "https://github.com/teeworlds/teeworlds.git")
4540 (commit version)))
4541 (file-name (git-file-name name version))
4542 (sha256
4543 (base32
4544 "1lxdb1k2cdj2421vyz1z0ximzfnpkh2y4y84zpn2gqsa1nzwbryb"))
4545 (modules '((guix build utils)
4546 (ice-9 ftw)
4547 (ice-9 regex)
4548 (srfi srfi-1)
4549 (srfi srfi-26)))
4550 (snippet ; remove bundled libraries except md5
4551 '(let ((base-dir "src/engine/external/"))
4552 (for-each (compose (cut delete-file-recursively <>)
4553 (cut string-append base-dir <>))
4554 (remove (cut string-match "(^.)|(^md5$)" <>)
4555 (scandir base-dir)))
4556 #t))))
4557 (build-system gnu-build-system)
4558 (arguments
4559 `(#:tests? #f ; no tests included
4560 #:modules ((guix build gnu-build-system)
4561 (guix build utils)
4562 (srfi srfi-26))
4563 #:phases
4564 (modify-phases %standard-phases
4565 (replace 'configure
4566 (lambda* (#:key outputs #:allow-other-keys)
4567 ;; Embed path to assets.
4568 (substitute* "src/engine/shared/storage.cpp"
4569 (("#define DATA_DIR.*")
4570 (string-append "#define DATA_DIR \""
4571 (assoc-ref outputs "out")
4572 "/share/teeworlds/data"
4573 "\"")))
4574
4575 ;; Bam expects all files to have a recent time stamp.
4576 (for-each (cut utime <> 1 1)
4577 (find-files "."))
4578
4579 ;; Do not use bundled libraries.
4580 (substitute* "bam.lua"
4581 (("local json = Compile.+$")
4582 "local json = nil
4583 settings.link.libs:Add(\"jsonparser\")")
4584 (("local png = Compile.+$")
4585 "local png = nil
4586 settings.link.libs:Add(\"pnglite\")")
4587 (("local wavpack = Compile.+$")
4588 "local wavpack = nil
4589 settings.link.libs:Add(\"wavpack\")")
4590 (("if config\\.zlib\\.value == 1")
4591 "if config.zlib.value"))
4592 (substitute* "src/engine/client/graphics_threaded.cpp"
4593 (("engine/external/pnglite/pnglite\\.h")
4594 "pnglite.h"))
4595 (substitute* "src/engine/client/sound.cpp"
4596 (("engine/external/wavpack/wavpack\\.h")
4597 "wavpack/wavpack.h"))
4598 #t))
4599 (replace 'build
4600 (lambda _
4601 (invoke "bam" "-a" "-v" "conf=release")))
4602 (replace 'install
4603 (lambda* (#:key outputs #:allow-other-keys)
4604 (let* ((arch ,(system->linux-architecture
4605 (or (%current-target-system)
4606 (%current-system))))
4607 (build (string-append "build/" (if (string=? arch "i386")
4608 "x86" arch)
4609 "/release/"))
4610 (data-built (string-append build "data/"))
4611 (out (assoc-ref outputs "out"))
4612 (bin (string-append out "/bin/"))
4613 (data (string-append out "/share/teeworlds/data/")))
4614 (for-each (cut install-file <> bin)
4615 (map (cut string-append build <>)
4616 '("teeworlds" "teeworlds_srv")))
4617 (copy-recursively data-built data)
4618 #t))))))
4619 (inputs
4620 `(("freetype" ,freetype)
4621 ("glu" ,glu)
4622 ("json-parser" ,json-parser)
4623 ("mesa" ,mesa)
4624 ("pnglite" ,pnglite)
4625 ("sdl2" ,sdl2)
4626 ("sdl2-image" ,sdl2-image)
4627 ("sdl2-mixer" ,sdl2-mixer)
4628 ("wavpack" ,wavpack)
4629 ("zlib" ,zlib)))
4630 (native-inputs
4631 `(("bam" ,bam)
4632 ("python" ,python-wrapper)
4633 ("pkg-config" ,pkg-config)))
4634 (home-page "https://www.teeworlds.com")
4635 (synopsis "2D retro multiplayer shooter game")
4636 (description "Teeworlds is an online multiplayer game. Battle with up to
4637 16 players in a variety of game modes, including Team Deathmatch and Capture
4638 The Flag. You can even design your own maps!")
4639 (license license:bsd-3)))
4640
4641 (define-public enigma
4642 (package
4643 (name "enigma")
4644 (version "1.21")
4645 (source (origin
4646 (method url-fetch)
4647 (uri (string-append "mirror://sourceforge/enigma-game/"
4648 "Release%20" version "/enigma-"
4649 version ".tar.gz"))
4650 (sha256
4651 (base32
4652 "00ffh9pypj1948pg3q9sjp1nmiabh52p5c8wpg9n1dcfgl3cywnq"))))
4653 (build-system gnu-build-system)
4654 (arguments
4655 `(#:configure-flags
4656 (list "--with-system-enet")
4657 #:phases
4658 (modify-phases %standard-phases
4659 (add-after 'unpack 'find-sdl
4660 (lambda _
4661 (substitute* "configure"
4662 (("SDL_ttf.h") "SDL/SDL_ttf.h"))
4663 (substitute* '("tools/ttf2bmf.cc"
4664 "lib-src/enigma-core/ecl_font.cc"
4665 "lib-src/enigma-core/ecl_video.cc"
4666 "lib-src/enigma-core/ecl_buffer.hh"
4667 "src/SoundEngine.cc"
4668 "src/SoundEngine.hh"
4669 "src/MusicManager.cc"
4670 "src/MusicManager.hh"
4671 "src/d_models.cc"
4672 "src/main.cc"
4673 "src/network.cc")
4674 (("#include \"SDL_(image|ttf|mixer|types|syswm|mutex).h\"" line header)
4675 (string-append "#include \"SDL/SDL_" header ".h\"")))
4676 (substitute* "src/main.cc"
4677 (("#include <SDL_(image|ttf|mixer).h>" line header)
4678 (string-append "#include \"SDL/SDL_" header ".h\"")))
4679 #t)))))
4680 (inputs
4681 `(("xerces-c" ,xerces-c)
4682 ("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer sdl-ttf)))
4683 ("curl" ,curl)
4684 ("enet" ,enet)))
4685 (native-inputs
4686 `(("pkg-config" ,pkg-config)
4687 ("imagemagick" ,imagemagick)))
4688 (home-page "https://www.nongnu.org/enigma")
4689 (synopsis "Puzzle game with a dexterity component")
4690 (description "Enigma is a puzzle game with 550 unique levels. The object
4691 of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.
4692 Simple? Yes. Easy? Certainly not! Hidden traps, vast mazes, laser beams,
4693 and most of all, countless hairy puzzles usually block your direct way to the
4694 Oxyd stones. Enigma’s game objects (and there are hundreds of them, lest you
4695 get bored) interact in many unexpected ways, and since many of them follow the
4696 laws of physics (Enigma’s special laws of physics, that is), controlling them
4697 with the mouse isn’t always trivial.")
4698 (license license:gpl2+)))
4699
4700 (define-public chroma
4701 (package
4702 (name "chroma")
4703 (version "1.17")
4704 (source (origin
4705 (method url-fetch)
4706 (uri (string-append "http://level7.org.uk/chroma/download/chroma-"
4707 version ".tar.bz2"))
4708 (sha256
4709 (base32
4710 "047sf00x71xbmi8bqrhfbmr9bk89l2gbykkqsfpw4wz6yfjscs6y"))))
4711 (build-system gnu-build-system)
4712 (arguments
4713 `(#:tests? #f)) ; no tests included
4714 (inputs
4715 `(("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer sdl-ttf)))
4716 ("freetype" ,freetype)
4717 ("ncurses" ,ncurses)
4718 ("fontconfig" ,fontconfig)
4719 ("libxft" ,libxft)))
4720 (native-inputs
4721 `(("pkg-config" ,pkg-config)))
4722 (home-page "http://level7.org.uk/chroma/")
4723 (synopsis "Abstract puzzle game")
4724 (description "Chroma is an abstract puzzle game. A variety of colourful
4725 shapes are arranged in a series of increasingly complex patterns, forming
4726 fiendish traps that must be disarmed and mysterious puzzles that must be
4727 manipulated in order to give up their subtle secrets. Initially so
4728 straightforward that anyone can pick it up and begin to play, yet gradually
4729 becoming difficult enough to tax even the brightest of minds.")
4730 (license license:gpl2+)))
4731
4732 (define-public fillets-ng
4733 (package
4734 (name "fillets-ng")
4735 (version "1.0.1")
4736 (source (origin
4737 (method url-fetch)
4738 (uri (string-append "mirror://sourceforge/fillets/"
4739 "Fish%20Fillets%20-%20Next%20Generation/"
4740 version "/fillets-ng-" version ".tar.gz"))
4741 (sha256
4742 (base32
4743 "1nljp75aqqb35qq3x7abhs2kp69vjcj0h1vxcpdyn2yn2nalv6ij"))))
4744 (build-system gnu-build-system)
4745 (arguments
4746 `(#:configure-flags
4747 (list (string-append "--with-lua="
4748 (assoc-ref %build-inputs "lua")))
4749 #:make-flags
4750 (list (string-append "CFLAGS=-I"
4751 (assoc-ref %build-inputs "sdl-union")
4752 "/include/SDL")
4753 (string-append "CXXFLAGS=-I"
4754 (assoc-ref %build-inputs "sdl-union")
4755 "/include/SDL"))
4756 #:phases
4757 (modify-phases %standard-phases
4758 ;; Lua 5.1 does not provide it.
4759 (add-after 'unpack 'do-not-link-with-lualib
4760 (lambda _
4761 (substitute* "configure"
4762 (("-llualib") ""))
4763 #t))
4764 (add-after 'install 'install-data
4765 (lambda* (#:key inputs outputs #:allow-other-keys)
4766 (let ((data (string-append (assoc-ref outputs "out")
4767 "/share/games/fillets-ng")))
4768 (mkdir-p data)
4769 (invoke "tar" "-xvf"
4770 (assoc-ref inputs "fillets-ng-data")
4771 "--strip-components=1"
4772 "-C" data)))))))
4773 (inputs
4774 `(("sdl-union" ,(sdl-union (list sdl
4775 sdl-mixer
4776 sdl-image
4777 sdl-ttf)))
4778 ("fribidi" ,fribidi)
4779 ("libx11" ,libx11)
4780 ("lua" ,lua-5.1)))
4781 (native-inputs
4782 `(("pkg-config" ,pkg-config)
4783 ("fillets-ng-data"
4784 ,(origin
4785 (method url-fetch)
4786 (uri (string-append "mirror://sourceforge/fillets/"
4787 "Fish%20Fillets%20-%20Next%20Generation/"
4788 version "/fillets-ng-data-" version ".tar.gz"))
4789 (sha256
4790 (base32
4791 "169p0yqh2gxvhdilvjc2ld8aap7lv2nhkhkg4i1hlmgc6pxpkjgh"))))))
4792 (home-page "http://fillets.sourceforge.net/")
4793 (synopsis "Puzzle game")
4794 (description "Fish Fillets NG is strictly a puzzle game. The goal in
4795 every of the seventy levels is always the same: find a safe way out. The fish
4796 utter witty remarks about their surroundings, the various inhabitants of their
4797 underwater realm quarrel among themselves or comment on the efforts of your
4798 fish. The whole game is accompanied by quiet, comforting music.")
4799 (license license:gpl2+)))
4800
4801 (define-public fish-fillets-ng
4802 (deprecated-package "fish-fillets-ng" fillets-ng))
4803
4804 (define-public crawl
4805 (package
4806 (name "crawl")
4807 (version "0.24.0")
4808 (source
4809 (origin
4810 (method url-fetch)
4811 (uri (list
4812 ;; Older releases get moved into a versioned directory
4813 (string-append "http://crawl.develz.org/release/"
4814 (version-major+minor version) "/stone_soup-"
4815 version "-nodeps.tar.xz")
4816 ;; Only the latest release is in this directory
4817 (string-append "http://crawl.develz.org/release/stone_soup-"
4818 version "-nodeps.tar.xz")))
4819 (sha256
4820 (base32 "0kdq6s12myxfdg75ma9x3ys2nd0xwb3xm2ynlmhg4628va0pnixr"))
4821 (patches (search-patches "crawl-upgrade-saves.patch"))))
4822 (build-system gnu-build-system)
4823 (inputs
4824 `(("lua51" ,lua-5.1)
4825 ("ncurses" ,ncurses)
4826 ("sqlite" ,sqlite)
4827 ("zlib" ,zlib)))
4828 (native-inputs
4829 `(("bison" ,bison)
4830 ("flex" ,flex)
4831 ("perl" ,perl)
4832 ("python" ,python-wrapper)
4833 ("python-pyyaml" ,python-pyyaml)
4834 ("pkg-config" ,pkg-config)))
4835 (arguments
4836 `(#:make-flags
4837 (let* ((sqlite (assoc-ref %build-inputs "sqlite"))
4838 (out (assoc-ref %outputs "out")))
4839 (list (string-append "SQLITE_INCLUDE_DIR=" sqlite "/include")
4840 (string-append "prefix=" out)
4841 "SAVEDIR=~/.crawl"
4842 ;; Don't compile with SSE on systems which don't have it.
4843 ,@(match (%current-system)
4844 ((or "i686-linux" "x86_64-linux")
4845 '())
4846 (_ '("NOSSE=TRUE")))
4847 ;; don't build any bundled dependencies
4848 "BUILD_LUA="
4849 "BUILD_SQLITE="
4850 "BUILD_ZLIB="
4851 "-Csource"))
4852 #:phases
4853 (modify-phases %standard-phases
4854 (add-after 'unpack 'find-SDL-image
4855 (lambda _
4856 (substitute* "source/windowmanager-sdl.cc"
4857 (("SDL_image.h") "SDL2/SDL_image.h"))
4858 #t))
4859 (delete 'configure)
4860 (replace 'check
4861 (lambda* (#:key inputs outputs make-flags #:allow-other-keys)
4862 (setenv "HOME" (getcwd))
4863 ;; Fake a terminal for the test cases.
4864 (setenv "TERM" "xterm-256color")
4865 ;; Run the tests that don't require a debug build.
4866 (apply invoke "make" "nondebugtest"
4867 (format #f "-j~d" (parallel-job-count))
4868 ;; Force command line build for test cases.
4869 (append make-flags '("GAME=crawl" "TILES="))))))))
4870 (synopsis "Roguelike dungeon crawler game")
4871 (description "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS
4872 for short) is a roguelike adventure through dungeons filled with dangerous
4873 monsters in a quest to find the mystifyingly fabulous Orb of Zot.")
4874 (home-page "https://crawl.develz.org")
4875 (license (list license:gpl2+
4876 license:bsd-2
4877 license:bsd-3
4878 license:cc0
4879 license:expat
4880 license:zlib
4881 license:asl2.0))))
4882
4883 (define-public dungeon-crawl-stone-soup
4884 (deprecated-package "dungeon-crawl-stone-soup" crawl))
4885
4886 ;; The linter here claims that patch file names should start with the package
4887 ;; name. But, in this case, the patches are inherited from crawl with the
4888 ;; "crawl-" prefix instead of "crawl-tiles-".
4889 (define-public crawl-tiles
4890 (package
4891 (inherit crawl)
4892 (name "crawl-tiles")
4893 (arguments
4894 (substitute-keyword-arguments
4895 (package-arguments crawl)
4896 ((#:make-flags flags)
4897 `(let ((dejavu (assoc-ref %build-inputs "font-dejavu")))
4898 (cons*
4899 (string-append "PROPORTIONAL_FONT=" dejavu
4900 "/share/fonts/truetype/DejaVuSans.ttf")
4901 (string-append "MONOSPACED_FONT=" dejavu
4902 "/share/fonts/truetype/DejaVuSansMono.ttf")
4903 "TILES=y"
4904 ;; Rename the executable to allow parallel installation with crawl.
4905 "GAME=crawl-tiles"
4906 ,flags)))))
4907 (inputs
4908 `(,@(package-inputs crawl)
4909 ("font-dejavu" ,font-dejavu)
4910 ("freetype6" ,freetype)
4911 ("glu" ,glu)
4912 ("libpng" ,libpng)
4913 ("sdl2" ,sdl2)
4914 ("sdl2-image" ,sdl2-image)
4915 ("sdl2-mixer" ,sdl2-mixer)))
4916 (native-inputs
4917 `(,@(package-native-inputs crawl)
4918 ("pngcrush" ,pngcrush)
4919 ("which" ,which)))
4920 (synopsis "Graphical roguelike dungeon crawler game")))
4921
4922 (define-public dungeon-crawl-stone-soup-tiles
4923 (deprecated-package "dungeon-crawl-stone-soup-tiles" crawl-tiles))
4924
4925 (define-public lugaru
4926 (package
4927 (name "lugaru")
4928 (version "1.2")
4929 (source (origin
4930 (method url-fetch)
4931 (uri (string-append "https://bitbucket.org/osslugaru/lugaru/downloads/"
4932 "lugaru-" version ".tar.xz"))
4933 (sha256
4934 (base32
4935 "15zgcshy22q51rm72zi6y9z7qlgnz5iw3gczjdlir4bqmxy4gspk"))))
4936 (build-system cmake-build-system)
4937 (arguments
4938 `(#:configure-flags
4939 (list "-DSYSTEM_INSTALL=ON")
4940 ;; no test target
4941 #:tests? #f))
4942 (native-inputs
4943 `(("pkg-config" ,pkg-config)))
4944 (inputs
4945 `(("sdl2" ,sdl2)
4946 ("glu" ,glu)
4947 ("libjpeg" ,libjpeg-turbo)
4948 ("libpng" ,libpng)
4949 ("openal" ,openal)
4950 ("vorbis" ,libvorbis)
4951 ("zlib" ,zlib)))
4952 (home-page "https://osslugaru.gitlab.io")
4953 (synopsis "Cross-platform third-person action game")
4954 (description "Lugaru is a third-person action game. The main character,
4955 Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.
4956 In his quest to find those responsible for slaughtering his village, he uncovers
4957 a far-reaching conspiracy involving the corrupt leaders of the rabbit republic
4958 and the starving wolves from a nearby den. Turner takes it upon himself to
4959 fight against their plot and save his fellow rabbits from slavery.")
4960 (license (list license:gpl2+ ; code
4961 ;; assets:
4962 license:cc-by-sa3.0
4963 license:cc-by-sa4.0))))
4964
4965 (define-public 0ad-data
4966 (package
4967 (name "0ad-data")
4968 (version "0.0.23b-alpha")
4969 (source
4970 (origin
4971 (method url-fetch)
4972 (uri (string-append "https://releases.wildfiregames.com/0ad-"
4973 version "-unix-data.tar.xz"))
4974 (file-name (string-append name "-" version ".tar.xz"))
4975 (sha256
4976 (base32
4977 "04x7729hk6zw1xj3n4s4lvaviijsnbjf5rhzvjxlr5fygvg4l6z1"))
4978 (modules '((guix build utils)))
4979 (snippet
4980 #~(begin
4981 (for-each (lambda (name)
4982 (let* ((dir (string-append "binaries/data/mods/" name))
4983 (file (string-append dir "/" name ".zip"))
4984 (unzip #$(file-append unzip "/bin/unzip")))
4985 (invoke unzip "-d" dir file)
4986 (delete-file file)))
4987 '("mod" "public"))
4988 #t))))
4989 (build-system trivial-build-system)
4990 (native-inputs `(("tar" ,tar)
4991 ("xz" ,xz)))
4992 (arguments
4993 `(#:modules ((guix build utils))
4994 #:builder
4995 (begin
4996 (use-modules (guix build utils))
4997 (let ((out (assoc-ref %outputs "out"))
4998 (source (assoc-ref %build-inputs "source"))
4999 (tar (string-append (assoc-ref %build-inputs "tar") "/bin/tar"))
5000 (xz-path (string-append (assoc-ref %build-inputs "xz") "/bin")))
5001 (setenv "PATH" xz-path)
5002 (mkdir out)
5003 (invoke tar "xvf" source "-C" out "--strip=3")))))
5004 (synopsis "Data files for 0ad")
5005 (description "0ad-data provides the data files required by the game 0ad.")
5006 (home-page "https://play0ad.com")
5007 (license (list (license:fsdg-compatible
5008 "http://tavmjong.free.fr/FONTS/ArevCopyright.txt"
5009 "Similar to the license of the Bitstream Vera fonts.")
5010 (license:fsdg-compatible
5011 "https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts")
5012 license:cc-by-sa3.0
5013 license:expat
5014 license:gfl1.0
5015 license:gpl2+
5016 license:gpl3+))))
5017
5018 (define-public 0ad
5019 (package
5020 (name "0ad")
5021 (version "0.0.23b-alpha")
5022 (source
5023 (origin
5024 (method url-fetch)
5025 (uri (string-append "https://releases.wildfiregames.com/0ad-"
5026 version "-unix-build.tar.xz"))
5027 (file-name (string-append name "-" version ".tar.xz"))
5028 (sha256
5029 (base32
5030 "0draa53xg69i5qhqym85658m45xhwkbiimaldj4sr3703rjgggq1"))))
5031 ;; A snippet here would cause a build failure because of timestamps
5032 ;; reset. See https://bugs.gnu.org/26734.
5033 (inputs
5034 `(("0ad-data" ,0ad-data)
5035 ("curl" ,curl)
5036 ("enet" ,enet)
5037 ("gloox" ,gloox)
5038 ("icu4c" ,icu4c)
5039 ("libpng" ,libpng)
5040 ("libsodium" ,libsodium)
5041 ("libvorbis" ,libvorbis)
5042 ("libxcursor" ,libxcursor)
5043 ("libxml2" ,libxml2)
5044 ("miniupnpc" ,miniupnpc)
5045 ("mozjs-38" ,mozjs-38)
5046 ("openal" ,openal)
5047 ("sdl2" ,sdl2)
5048 ("wxwidgets" ,wxwidgets)
5049 ("zlib" ,zlib)))
5050 (native-inputs
5051 `(("boost" ,boost)
5052 ("cmake" ,cmake-minimal)
5053 ("mesa" ,mesa)
5054 ("pkg-config" ,pkg-config)
5055 ("python-2" ,python-2)))
5056 (build-system gnu-build-system)
5057 (arguments
5058 `(#:make-flags '("config=release" "verbose=1" "-C" "build/workspaces/gcc")
5059 #:phases
5060 (modify-phases %standard-phases
5061 (add-after 'unpack 'delete-bundles
5062 (lambda _
5063 (delete-file-recursively "libraries/source/spidermonkey")
5064 #t))
5065 (add-after 'unpack 'fix-x11-includes
5066 (lambda _
5067 (substitute* "source/lib/sysdep/os/unix/x/x.cpp"
5068 (("<Xlib.h>") "<X11/Xlib.h>"))
5069 (substitute* "source/lib/sysdep/os/unix/x/x.cpp"
5070 (("<Xatom.h>") "<X11/Xatom.h>"))
5071 (substitute* "source/lib/sysdep/os/unix/x/x.cpp"
5072 (("<Xcursor/Xcursor.h>") "<X11/Xcursor/Xcursor.h>"))
5073 #t))
5074 (replace 'configure
5075 (lambda* (#:key inputs outputs #:allow-other-keys)
5076 (let* ((jobs (number->string (parallel-job-count)))
5077 (out (assoc-ref outputs "out"))
5078 (lib (string-append out "/lib"))
5079 (data (string-append out "/share/0ad")))
5080 (setenv "JOBS" (string-append "-j" jobs))
5081 (setenv "CC" "gcc")
5082 (with-directory-excursion "build/workspaces"
5083 (invoke "./update-workspaces.sh"
5084 (string-append "--libdir=" lib)
5085 (string-append "--datadir=" data)
5086 ;; TODO: "--with-system-nvtt"
5087 "--with-system-mozjs38")))))
5088 (delete 'check)
5089 (replace 'install
5090 (lambda* (#:key inputs outputs #:allow-other-keys)
5091 (chdir "binaries")
5092 (let* ((out (assoc-ref outputs "out"))
5093 (bin (string-append out "/bin"))
5094 (lib (string-append out "/lib"))
5095 (data (string-append out "/share/0ad"))
5096 (applications (string-append out "/share/applications"))
5097 (pixmaps (string-append out "/share/pixmaps"))
5098 (0ad-data (assoc-ref inputs "0ad-data")))
5099 ;; data
5100 (copy-recursively "data" data)
5101 (for-each (lambda (file)
5102 (symlink (string-append 0ad-data "/" file)
5103 (string-append data "/" file)))
5104 '("config" "mods/mod" "mods/public" "tools"))
5105 ;; libraries
5106 (for-each (lambda (file)
5107 (install-file file lib))
5108 (find-files "system" "\\.so$"))
5109 ;; binaries
5110 (install-file "system/pyrogenesis" bin)
5111 (with-directory-excursion bin
5112 (symlink "pyrogenesis" "0ad"))
5113 ;; resources
5114 (with-directory-excursion "../build/resources"
5115 (install-file "0ad.desktop" applications)
5116 (install-file "0ad.png" pixmaps))
5117 #t)))
5118 (add-after 'install 'check
5119 (lambda _
5120 (with-directory-excursion "system"
5121 (invoke "./test")))))))
5122 (home-page "https://play0ad.com")
5123 (synopsis "3D real-time strategy game of ancient warfare")
5124 (description "0 A.D. is a real-time strategy (RTS) game of ancient
5125 warfare. It's a historically-based war/economy game that allows players to
5126 relive or rewrite the history of twelve ancient civilizations, each depicted
5127 at their peak of economic growth and military prowess.
5128
5129 0ad needs a window manager that supports 'Extended Window Manager Hints'.")
5130 (license (list license:bsd-2
5131 license:bsd-3
5132 license:expat
5133 license:gpl2+
5134 license:ibmpl1.0
5135 license:isc
5136 license:lgpl2.1
5137 license:lgpl3
5138 license:mpl2.0
5139 license:zlib))))
5140
5141 ;; There have been no official releases.
5142 (define-public open-adventure
5143 (let* ((commit "d43854f0f6bb8e9eea7fbce80348150e7e7fc34d")
5144 (revision "2"))
5145 (package
5146 (name "open-adventure")
5147 (version (string-append "2.5-" revision "." (string-take commit 7)))
5148 (source (origin
5149 (method git-fetch)
5150 (uri (git-reference
5151 (url "https://gitlab.com/esr/open-adventure")
5152 (commit commit)))
5153 (file-name (string-append name "-" version "-checkout"))
5154 (sha256
5155 (base32
5156 "08bwrvf4axb1rsfd6ia1fddsky9pc1p350vjskhaakg2czc6dsk0"))))
5157 (build-system gnu-build-system)
5158 (arguments
5159 `(#:make-flags (list "CC=gcc")
5160 #:parallel-build? #f ; not supported
5161 #:phases
5162 (modify-phases %standard-phases
5163 (replace 'configure
5164 (lambda* (#:key inputs outputs #:allow-other-keys)
5165 ;; Linenoise is meant to be included, so we have to
5166 ;; copy it into the working directory.
5167 (let* ((linenoise (assoc-ref inputs "linenoise"))
5168 (noisepath (string-append linenoise "/include/linenoise"))
5169 (out (assoc-ref outputs "out")))
5170 (copy-recursively noisepath "linenoise"))
5171 #t))
5172 (add-before 'build 'use-echo
5173 (lambda _
5174 (substitute* "tests/Makefile"
5175 (("/bin/echo") (which "echo")))
5176 #t))
5177 (add-after 'build 'build-manpage
5178 (lambda _
5179 ;; This target is missing a dependency
5180 (substitute* "Makefile"
5181 ((".adoc.6:" line)
5182 (string-append line " advent.adoc")))
5183 (invoke "make" ".adoc.6")))
5184 ;; There is no install target
5185 (replace 'install
5186 (lambda* (#:key outputs #:allow-other-keys)
5187 (let* ((out (assoc-ref outputs "out"))
5188 (bin (string-append out "/bin"))
5189 (man (string-append out "/share/man/man6")))
5190 (install-file "advent" bin)
5191 (install-file "advent.6" man))
5192 #t)))))
5193 (native-inputs
5194 `(("asciidoc" ,asciidoc)
5195 ("linenoise" ,linenoise)
5196 ("python" ,python)
5197 ("python-pyyaml" ,python-pyyaml)))
5198 (home-page "https://gitlab.com/esr/open-adventure")
5199 (synopsis "Colossal Cave Adventure")
5200 (description "The original Colossal Cave Adventure from 1976 was the
5201 origin of all text adventures, dungeon-crawl (computer) games, and
5202 computer-hosted roleplaying games. This is the last version released by
5203 Crowther & Woods, its original authors, in 1995. It has been known as
5204 \"adventure 2.5\" and \"430-point adventure\".")
5205 (license license:bsd-2))))
5206
5207 (define-public tome4
5208 (package
5209 (name "tome4")
5210 (version "1.6.6")
5211 (synopsis "Single-player, RPG roguelike game set in the world of Eyal")
5212 (source
5213 (origin
5214 (method url-fetch)
5215 (uri (string-append "https://te4.org/dl/t-engine/t-engine4-src-"
5216 version ".tar.bz2"))
5217 (sha256
5218 (base32
5219 "1amx0y49scy9hq71wjvkdzvgclwa2g54vkv4bf40mxyp4pl0bq7m"))
5220 (modules '((guix build utils)))
5221 (snippet
5222 '(begin
5223 (substitute* '("src/music.h" "src/tSDL.h")
5224 (("#elif defined(__FreeBSD__)" line)
5225 (string-append
5226 line " || defined(__GNUC__)")))
5227 (substitute* '("src/tgl.h")
5228 (("#include <GL/glext.h>") ""))
5229 #t))))
5230 (build-system gnu-build-system)
5231 (native-inputs
5232 `(("unzip" ,unzip)))
5233 (inputs
5234 `(("sdl-union" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))
5235 ("glu" ,glu)
5236 ("premake4" ,premake4)
5237 ("openal" ,openal)
5238 ("vorbis" ,libvorbis)
5239 ("luajit" ,luajit)))
5240 (arguments
5241 `(#:make-flags '("CC=gcc" "config=release")
5242 ;; XXX: Building in parallel occasionally causes this build failure:
5243 ;; ../src/luajit2/src/host/buildvm.c:73:10: fatal error: buildvm_arch.h:
5244 ;; No such file or directory
5245 #:parallel-build? #f
5246 #:phases (modify-phases %standard-phases
5247 (delete 'bootstrap)
5248 (replace 'configure
5249 (lambda _
5250 (invoke "premake4" "gmake")
5251 #t))
5252 (add-after 'set-paths 'set-sdl-paths
5253 (lambda* (#:key inputs #:allow-other-keys)
5254 (setenv "CPATH"
5255 (string-append (assoc-ref inputs "sdl-union")
5256 "/include/SDL2:"
5257 (getenv "CPATH")))
5258 #t))
5259 (delete 'check)
5260 ;; premake doesn't provide install target
5261 (replace 'install
5262 (lambda* (#:key inputs outputs #:allow-other-keys)
5263 (let* ((out (assoc-ref outputs "out"))
5264 (usr (string-append out "/usr"))
5265 (bin (string-append out "/bin"))
5266 (licenses (string-append out "/share/licenses"))
5267 (documents (string-append out "/share/doc"))
5268 (pixmaps (string-append out "/share/pixmaps"))
5269 (icon "te4-icon.png")
5270 (data (string-append out "/share/" ,name))
5271 (applications (string-append
5272 out "/share/applications"))
5273 (unzip (string-append
5274 (assoc-ref inputs "unzip") "/bin/unzip"))
5275 (wrapper (string-append bin "/" ,name)))
5276 ;; icon
5277 (mkdir-p pixmaps)
5278 (invoke unzip "-j"
5279 (string-append
5280 "game/engines/te4-" ,version ".teae")
5281 (string-append
5282 "data/gfx/" icon) "-d" pixmaps)
5283 ;; game executable
5284 (install-file "t-engine" data)
5285 (mkdir-p bin)
5286 (with-output-to-file wrapper
5287 (lambda ()
5288 (display
5289 (string-append
5290 "#!/bin/sh\n"
5291 ;; No bootstrap code found,
5292 ;; defaulting to working directory
5293 ;; for engine code!
5294 "cd " data "\n"
5295 "exec -a tome4 ./t-engine \"$@\"\n"))))
5296 (chmod wrapper #o555)
5297 ;; licenses
5298 (for-each (lambda (file)
5299 (install-file file licenses))
5300 '("COPYING" "COPYING-MEDIA"))
5301 ;; documents
5302 (for-each (lambda (file)
5303 (install-file file documents))
5304 '("CONTRIBUTING" "CREDITS"))
5305 ;; data
5306 (copy-recursively "bootstrap" (string-append
5307 data "/bootstrap"))
5308 (copy-recursively "game" (string-append data "/game"))
5309 ;; launcher
5310 (mkdir-p applications)
5311 (with-output-to-file (string-append applications "/"
5312 ,name ".desktop")
5313 (lambda ()
5314 (display
5315 (string-append
5316 "[Desktop Entry]
5317 Name=ToME4
5318 Comment=" ,synopsis "\n"
5319 "Exec=" ,name "\n"
5320 "Icon=" icon "\n"
5321 "Terminal=false
5322 Type=Application
5323 Categories=Game;RolePlaying;\n")))))
5324 #t)))))
5325 (home-page "https://te4.org")
5326 (description "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based
5327 combat and advanced character building. Play as one of many unique races and
5328 classes in the lore-filled world of Eyal, exploring random dungeons, facing
5329 challenging battles, and developing characters with your own tailored mix of
5330 abilities and powers. With a modern graphical and customisable interface,
5331 intuitive mouse control, streamlined mechanics and deep, challenging combat,
5332 Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century.")
5333 (license license:gpl3+)))
5334
5335 (define-public tales-of-maj-eyal
5336 (deprecated-package "tales-of-maj-eyal" tome4))
5337
5338 (define-public quakespasm
5339 (package
5340 (name "quakespasm")
5341 (version "0.93.2")
5342 (source
5343 (origin
5344 (method url-fetch)
5345 (uri (string-append "mirror://sourceforge/quakespasm/Source/quakespasm-"
5346 version ".tgz"))
5347 (sha256
5348 (base32 "0qm0j5drybvvq8xadfyppkpk3rxqsxbywzm6iwsjwdf0iia3gss5"))))
5349 (arguments
5350 `(#:tests? #f
5351 #:make-flags '("CC=gcc"
5352 "MP3LIB=mpg123"
5353 "USE_CODEC_FLAC=1"
5354 "USE_CODEC_MIKMOD=1"
5355 "USE_SDL2=1"
5356 "-CQuake")
5357 #:phases (modify-phases %standard-phases
5358 (delete 'configure)
5359 (add-after 'unpack 'fix-makefile-paths
5360 (lambda* (#:key outputs #:allow-other-keys)
5361 (let ((out (assoc-ref outputs "out")))
5362 (mkdir-p (string-append out "/bin"))
5363 (substitute* "Quake/Makefile"
5364 (("/usr/local/games")
5365 (string-append out "/bin")))
5366 #t))))))
5367 (build-system gnu-build-system)
5368 (inputs `(("libmikmod" ,libmikmod)
5369 ("libvorbis" ,libvorbis)
5370 ("flac" ,flac)
5371 ("mesa" ,mesa)
5372 ("mpg123" ,mpg123)
5373 ("sdl2" ,sdl2)))
5374 (synopsis "First person shooter engine for Quake 1")
5375 (description "Quakespasm is a modern engine for id software's Quake 1.
5376 It includes support for 64 bit CPUs, custom music playback, a new sound driver,
5377 some graphical niceities, and numerous bug-fixes and other improvements.")
5378 (home-page "http://quakespasm.sourceforge.net/")
5379 (license license:gpl2+)))
5380
5381 (define-public vkquake
5382 (package
5383 (inherit quakespasm)
5384 (name "vkquake")
5385 (version "1.01.0")
5386 (source
5387 (origin
5388 (method git-fetch)
5389 (uri (git-reference
5390 (url "https://github.com/Novum/vkQuake.git")
5391 (commit version)))
5392 (file-name (git-file-name name version))
5393 (sha256
5394 (base32 "1iwin8j5kbyrknbkhjgpy8nmm7pxqzr0daa9gn7p38qhg2mh0a39"))))
5395 (arguments
5396 `(#:make-flags
5397 (let ((vulkanlib (string-append (assoc-ref %build-inputs
5398 "vulkan-loader") "/lib")))
5399 (list "CC=gcc"
5400 "MP3LIB=mpg123"
5401 "USE_CODEC_FLAC=1"
5402 "USE_CODEC_MIKMOD=1"
5403 "USE_SDL2=1"
5404 (string-append "LDFLAGS=-Wl,-rpath=" vulkanlib)
5405 "-CQuake"))
5406 #:phases (modify-phases %standard-phases
5407 (delete 'configure)
5408 (add-after 'unpack 'fix-makefile-paths
5409 (lambda* (#:key outputs #:allow-other-keys)
5410 (let ((vulkan (assoc-ref %build-inputs
5411 "vulkan-loader"))
5412 (out (assoc-ref outputs "out")))
5413 (mkdir-p (string-append out "/bin"))
5414 (substitute* "Quake/Makefile" ((" /usr")
5415 (string-append " " out)))
5416 (substitute* "Quake/Makefile" (("/games")
5417 (string-append "/bin")))
5418 (substitute* "Quake/Makefile" (("..VULKAN_SDK.") vulkan))
5419 #t))))
5420 ,@(strip-keyword-arguments '(#:make-flags #:phases)
5421 (package-arguments quakespasm))))
5422 (inputs `(("vulkan-headers" ,vulkan-headers)
5423 ("vulkan-loader" ,vulkan-loader)
5424 ,@(package-inputs quakespasm)))
5425 (description "vkquake is a modern engine for id software's Quake 1.
5426 It includes support for 64 bit CPUs, custom music playback, a new sound driver,
5427 some graphical niceities, and numerous bug-fixes and other improvements.")
5428 (home-page "https://github.com/Novum/vkQuake")))
5429
5430 (define-public yamagi-quake2
5431 (package
5432 (name "yamagi-quake2")
5433 (version "7.10")
5434 (source
5435 (origin
5436 (method url-fetch)
5437 (uri (string-append "https://deponie.yamagi.org/quake2/quake2-"
5438 version ".tar.xz"))
5439 (sha256
5440 (base32
5441 "0psinbg25mysd58k99s1n34w31w5hj1vppb39gdjb0zqi6sl6cps"))))
5442 (build-system gnu-build-system)
5443 (arguments
5444 `(#:tests? #f
5445 #:make-flags
5446 (list "CC=gcc"
5447 ;; link openAL instead of using dlopen at runtime
5448 "DLOPEN_OPENAL=\"no\""
5449 ;; an optional directory where it will look for quake2 data files
5450 ;; in addition to the current working directory
5451 "WITH_SYSTEMWIDE=yes"
5452 "WITH_SYSTEMDIR=\"/opt/quake2\"")
5453 #:phases
5454 (modify-phases %standard-phases
5455 (delete 'configure)
5456 (replace 'install
5457 (lambda* (#:key outputs #:allow-other-keys)
5458 (let ((out (assoc-ref outputs "out")))
5459 (mkdir-p (string-append out "/lib"))
5460 (mkdir-p (string-append out "/bin"))
5461 ;; The yamagi-quake2 binary must be in the same directory
5462 ;; as it's engine libraries, but symlinking it to /bin is okay
5463 ;; https://github.com/yquake2/yquake2/blob/master/stuff/packaging.md
5464 (copy-recursively "release"
5465 (string-append out "/lib/yamagi-quake2"))
5466 (symlink (string-append out "/lib/yamagi-quake2/quake2")
5467 (string-append out "/bin/yamagi-quake2"))
5468 (symlink (string-append out "/lib/yamagi-quake2/q2ded")
5469 (string-append out "/bin/yamagi-q2ded"))))))))
5470 (inputs `(("sdl2" ,sdl2)
5471 ("mesa" ,mesa)
5472 ("libvorbis" ,libvorbis)
5473 ("zlib" ,zlib)
5474 ("openal" ,openal)))
5475 (native-inputs `(("pkg-config" ,pkg-config)))
5476 (synopsis "First person shooter engine based on quake2")
5477 (description "Yamagi Quake II is an enhanced client for id Software's Quake II.
5478 The main focus is an unchanged single player experience like back in 1997,
5479 thus the gameplay and the graphics are unaltered. However the user may use one
5480 of the unofficial retexturing packs. In comparison with the official client,
5481 over 1000 bugs were fixed and an extensive code audit done,
5482 making Yamagi Quake II one of the most solid Quake II implementations available.")
5483 (home-page "https://www.yamagi.org/quake2/")
5484 (license (list license:gpl2+ ; game and server
5485 (license:non-copyleft ; info-zip
5486 "file://LICENSE"
5487 "See Info-Zip section.")
5488 license:public-domain)))) ; stb
5489
5490 (define-public nudoku
5491 (package
5492 (name "nudoku")
5493 (version "1.0.0")
5494 (source (origin
5495 (method url-fetch)
5496 (uri (string-append "https://github.com/jubalh/nudoku/"
5497 "releases/download/" version
5498 "/nudoku-" version ".tar.xz"))
5499 (sha256
5500 (base32
5501 "0nr2j2z07nxk70s8xnmmpzccxicf7kn5mbwby2kg6aq8paarjm8k"))))
5502 (build-system gnu-build-system)
5503 (inputs `(("ncurses" ,ncurses)))
5504 (home-page "https://jubalh.github.io/nudoku/")
5505 (synopsis "Sudoku for your terminal")
5506 (description "Nudoku is a ncurses-based Sudoku game for your terminal.")
5507 (license license:gpl3+)))
5508
5509 (define-public the-butterfly-effect
5510 (package
5511 (name "the-butterfly-effect")
5512 (version "0.9.3.1")
5513 (source
5514 (origin
5515 (method git-fetch)
5516 (uri (git-reference
5517 (url "https://github.com/the-butterfly-effect/tbe.git")
5518 (commit (string-append "v" version))))
5519 (file-name (git-file-name name version))
5520 (sha256
5521 (base32
5522 "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj"))))
5523 (build-system gnu-build-system)
5524 (arguments
5525 `(#:phases
5526 (modify-phases %standard-phases
5527 (delete 'configure)
5528 ;; There is no "install" phase. By default, tbe is installed
5529 ;; in the build directory. Provide our own installation.
5530 (replace 'install
5531 (lambda* (#:key outputs #:allow-other-keys)
5532 (let* ((out (assoc-ref outputs "out"))
5533 (bin (string-append out "/bin"))
5534 (share (string-append out "/share")))
5535 (install-file "usr/games/tbe" bin)
5536 (mkdir-p share)
5537 (copy-recursively "usr/share" share)
5538 #t))))
5539 ;; Test suite requires a running Xorg server. Even when
5540 ;; provided, it fails with "D-Bus library appears to be
5541 ;; incorrectly set up; failed to read machine uuid: Failed to
5542 ;; open "/etc/machine-id": No such file or directory" along
5543 ;; with multiple "QPainter:: ... Painter not active" warnings.
5544 #:tests? #f))
5545 (inputs
5546 `(("qtbase" ,qtbase)
5547 ("qtsvg" ,qtsvg)))
5548 (native-inputs
5549 `(("cmake" ,cmake-minimal)
5550 ("gettext-minimal" ,gettext-minimal)
5551 ("qttools" ,qttools)))
5552 (synopsis "Realistic physics puzzle game")
5553 (description "The Butterfly Effect (tbe) is a game that uses
5554 realistic physics simulations to combine lots of simple mechanical
5555 elements to achieve a simple goal in the most complex way possible.")
5556 (home-page "http://the-butterfly-effect.org/")
5557 ;; Main license is GPL2-only. However, artwork is distributed
5558 ;; under various licenses, listed here.
5559 (license (list license:gpl2 license:public-domain license:expat
5560 license:cc-by-sa3.0 license:gpl3+ license:wtfpl2))))
5561
5562 (define-public pioneer
5563 (package
5564 (name "pioneer")
5565 (version "20190203")
5566 (source (origin
5567 (method git-fetch)
5568 (uri (git-reference
5569 (url "https://github.com/pioneerspacesim/pioneer.git")
5570 (commit version)))
5571 (file-name (git-file-name name version))
5572 (sha256
5573 (base32
5574 "1g34wvgyvz793dhm1k64kl82ib0cavkbg0f2p3fp05b457ycljff"))))
5575 (build-system cmake-build-system)
5576 (native-inputs
5577 `(("pkg-config" ,pkg-config)))
5578 (inputs
5579 `(("assimp" ,assimp)
5580 ("curl" ,curl)
5581 ("freetype" ,freetype)
5582 ("glew" ,glew)
5583 ("glu" ,glu)
5584 ("libpng" ,libpng)
5585 ("libsigc++" ,libsigc++)
5586 ("libvorbis" ,libvorbis)
5587 ("lua" ,lua-5.2) ;not compatible with 5.3
5588 ("mesa" ,mesa)
5589 ("sdl" ,(sdl-union (list sdl2 sdl2-image)))))
5590 (arguments
5591 `(#:tests? #f ;tests are broken
5592 #:configure-flags (list "-DUSE_SYSTEM_LIBLUA:BOOL=YES"
5593 (string-append "-DPIONEER_DATA_DIR="
5594 %output "/share/games/pioneer"))))
5595 (home-page "http://pioneerspacesim.net")
5596 (synopsis "Game of lonely space adventure")
5597 (description
5598 "Pioneer is a space adventure game set in our galaxy at the turn of the
5599 31st century. The game is open-ended, and you are free to eke out whatever
5600 kind of space-faring existence you can think of. Look for fame or fortune by
5601 exploring the millions of star systems. Turn to a life of crime as a pirate,
5602 smuggler or bounty hunter. Forge and break alliances with the various
5603 factions fighting for power, freedom or self-determination. The universe is
5604 whatever you make of it.")
5605 (license license:gpl3)))
5606
5607 (define-public badass
5608 (let ((commit "3c3cd669b4fc8f73a102e3702788f7b28dc47dbb")
5609 (revision "0"))
5610 (package
5611 (name "badass")
5612 (version (git-version "0.0" revision commit))
5613 (source (origin
5614 (method git-fetch)
5615 (uri (git-reference
5616 (url "https://github.com/umayr/badass.git")
5617 (commit commit)))
5618 (file-name (git-file-name name version))
5619 (sha256
5620 (base32
5621 "05c9vdcb5ym3z0n5ll3v39mw4yl9jcjnlydmn0yl89ai9pv71zb6"))))
5622 (build-system go-build-system)
5623 (arguments
5624 '(#:import-path "github.com/umayr/badass"))
5625 (synopsis "Hacking contribution graphs in git")
5626 (description
5627 "Badass generates false commits for a range of dates, essentially
5628 hacking the gamification of contribution graphs on platforms such as
5629 Github or Gitlab.")
5630 (home-page "https://github.com/umayr/badass")
5631 (license license:expat))))
5632
5633 (define-public colobot
5634 (package
5635 (name "colobot")
5636 (version "0.1.12-alpha")
5637 (source
5638 (origin
5639 (method git-fetch)
5640 (uri (git-reference
5641 (url "https://github.com/colobot/colobot.git")
5642 (commit (string-append "colobot-gold-" version))
5643 (recursive? #t))) ;for "data/" subdir
5644 (file-name (git-file-name name version))
5645 (sha256
5646 (base32
5647 "1c181cclkrnspgs07lvndg2c81cjq3smkv7qim8c470cj88rcrp2"))))
5648 (build-system cmake-build-system)
5649 (arguments
5650 `(#:tests? #f ;no test
5651 #:phases
5652 (modify-phases %standard-phases
5653 (add-after 'unpack 'make-git-checkout-writable
5654 (lambda _
5655 (for-each make-file-writable (find-files "."))
5656 #t))
5657 (add-after 'unpack 'fix-directories
5658 (lambda _
5659 (substitute* "CMakeLists.txt"
5660 (("(\\$\\{CMAKE_INSTALL_PREFIX\\})/games" _ prefix)
5661 (string-append prefix "/bin"))
5662 (("(\\$\\{CMAKE_INSTALL_PREFIX\\}/share)/games/colobot" _ prefix)
5663 (string-append prefix "/colobot")))
5664 #t))
5665 (add-after 'fix-directories 'install-music
5666 ;; Retrieve and install music files.
5667 (lambda* (#:key inputs #:allow-other-keys)
5668 ;; Installation process tries to download music files using
5669 ;; "wget" if not already present. Since we are going another
5670 ;; route, skip "wget" command check.
5671 (substitute* "data/music/CMakeLists.txt"
5672 (("find_program\\(WGET wget\\)") ""))
5673 ;; Populate "music/" directory.
5674 (let ((data (assoc-ref inputs "colobot-music")))
5675 (invoke "tar" "-xvf" data "-Cdata/music"))
5676 #t)))))
5677 (native-inputs
5678 `(("colobot-music"
5679 ,(origin
5680 (method url-fetch)
5681 (uri (string-append "https://colobot.info/files/music/"
5682 "colobot-music_ogg_" version ".tar.gz"))
5683 (sha256
5684 (base32
5685 "1s86cd36rwkff329mb1ay1wi5qqyi35564ppgr3f4qqz9wj9vs2m"))))
5686 ("gettext" ,gettext-minimal)
5687 ("librsvg" ,librsvg)
5688 ("po4a" ,po4a)
5689 ("python" ,python-wrapper)))
5690 (inputs
5691 `(("boost" ,boost)
5692 ("glew" ,glew)
5693 ("libogg" ,libogg)
5694 ("libpng" ,libpng)
5695 ("libsndfile" ,libsndfile)
5696 ("libvorbis" ,libvorbis)
5697 ("openal" ,openal)
5698 ("physfs" ,physfs)
5699 ("sdl" ,(sdl-union (list sdl2 sdl2-image sdl2-ttf)))))
5700 (synopsis "Educational programming strategy game")
5701 (description "Colobot: Gold Edition is a real-time strategy game, where
5702 you can program your units (bots) in a language called CBOT, which is similar
5703 to C++ and Java. Your mission is to find a new planet to live and survive.
5704 You can save humanity and get programming skills!")
5705 (home-page "https://colobot.info")
5706 (license license:gpl3+)))
5707
5708 (define-public gzdoom
5709 (package
5710 (name "gzdoom")
5711 (version "4.3.2")
5712 (source
5713 (origin
5714 (method git-fetch)
5715 (uri (git-reference
5716 (url "https://github.com/coelckers/gzdoom.git")
5717 (commit (string-append "g" version))))
5718 (file-name (git-file-name name version))
5719 (sha256
5720 (base32 "0i4hyg72z84fc6ca2ic9q82q5cbgrbd7bynl3kpkypxvyasq08wz"))
5721 (patches (search-patches "gzdoom-search-in-installed-share.patch"
5722 "gzdoom-find-system-libgme.patch"))
5723 (modules '((guix build utils)))
5724 (snippet
5725 '(begin
5726 ;; Remove some bundled libraries. XXX There are more, but removing
5727 ;; them would require, at least, patching the build system.
5728 (with-directory-excursion "libraries"
5729 (delete-file-recursively "bzip2")
5730 (delete-file-recursively "game-music-emu")
5731 (delete-file-recursively "jpeg")
5732 (delete-file-recursively "zlib"))
5733 #t))))
5734 (arguments
5735 '(#:tests? #f
5736 #:configure-flags
5737 (let ((out (assoc-ref %outputs "out")))
5738 (list
5739 (string-append
5740 "-DCMAKE_CXX_FLAGS:="
5741 "-DSHARE_DIR=\\\"" out "/share/\\\" "
5742 "-DGUIX_OUT_PK3=\\\"" out "/share/games/doom\\\"")
5743
5744 ;; The build requires some extra convincing not to use the bundled
5745 ;; libgme previously deleted in the soure snippet.
5746 "-DFORCE_INTERNAL_GME=OFF"
5747
5748 ;; Link libraries at build time instead of loading them at run time.
5749 "-DDYN_OPENAL=OFF"
5750 "-DDYN_FLUIDSYNTH=OFF"
5751 "-DDYN_GTK=OFF"
5752 "-DDYN_MPG123=OFF"
5753 "-DDYN_SNDFILE=OFF"))
5754 #:phases
5755 (modify-phases %standard-phases
5756 (add-before 'configure 'fix-referenced-paths
5757 (lambda* (#:key inputs outputs #:allow-other-keys)
5758 (let ((fluid-3 (assoc-ref inputs "fluid-3"))
5759 (timidity++ (assoc-ref inputs "timidity++"))
5760 (out (assoc-ref outputs "out")))
5761
5762 (substitute*
5763 "src/CMakeLists.txt"
5764 (("COMMAND /bin/sh")
5765 (string-append "COMMAND " (which "sh"))))
5766
5767 (substitute*
5768 "libraries/zmusic/mididevices/music_fluidsynth_mididevice.cpp"
5769 (("/usr/share/sounds/sf2/FluidR3_GM.sf2")
5770 (string-append fluid-3 "/share/soundfonts/FluidR3Mono_GM.sf3")))
5771
5772 (substitute*
5773 "libraries/zmusic/mididevices/music_timiditypp_mididevice.cpp"
5774 (("exename = \"timidity\"")
5775 (string-append "exename = \"" timidity++ "/bin/timidity\"")))
5776 #t))))))
5777 (build-system cmake-build-system)
5778 (inputs `(("bzip2" ,bzip2)
5779 ("fluid-3" ,fluid-3)
5780 ("fluidsynth" ,fluidsynth)
5781 ("gtk+3" ,gtk+)
5782 ("libgme" ,libgme)
5783 ("libjpeg" ,libjpeg)
5784 ("libsndfile" ,libsndfile)
5785 ("mesa" ,mesa)
5786 ("mpg123" ,mpg123)
5787 ("openal" ,openal)
5788 ("sdl2" ,sdl2)
5789 ("timidity++" ,timidity++)
5790 ("zlib" ,zlib)))
5791 (native-inputs `(("pkg-config" ,pkg-config)
5792 ("unzip" ,unzip)))
5793 (synopsis "Modern Doom 2 source port")
5794 (description "GZdoom is a port of the Doom 2 game engine, with a modern
5795 renderer. It improves modding support with ZDoom's advanced mapping features
5796 and the new ZScript language. In addition to Doom, it supports Heretic, Hexen,
5797 Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom.")
5798 (home-page "https://zdoom.org/index")
5799 ;; The source uses x86 assembly
5800 (supported-systems '("x86_64-linux" "i686-linux"))
5801 (license (list license:gpl3+ ; gzdoom game
5802 license:lgpl3+ ; gzdoom renderer
5803 license:expat ; gdtoa
5804 (license:non-copyleft ; modified dumb
5805 "file://dumb/licence.txt"
5806 "Dumb license, explicitly GPL compatible.")))))
5807
5808 (define-public odamex
5809 (package
5810 (name "odamex")
5811 (version "0.8.1")
5812 (source
5813 (origin
5814 (method url-fetch)
5815 (uri (string-append
5816 "mirror://sourceforge/odamex/Odamex/" version "/"
5817 "odamex-src-" version ".tar.gz"))
5818 (sha256
5819 (base32 "1ywbqkfacc9fc5di3dn95y5ah2ys9i241j64q3f37a73x92llw1i"))))
5820 (build-system cmake-build-system)
5821 (arguments `(#:tests? #f)) ; no tests
5822 (inputs
5823 `(("sdl" ,sdl)
5824 ("sdl-mixer" ,sdl-mixer)
5825 ("zlib" ,zlib)
5826 ("libpng" ,libpng)
5827 ("alsa-lib" ,alsa-lib)))
5828 (home-page "https://odamex.net/")
5829 (synopsis "Multiplayer Doom port")
5830 (description "Odamex is a modification of the Doom engine that
5831 allows players to easily join servers dedicated to playing Doom
5832 online.")
5833 (license license:gpl2+)))
5834
5835 (define-public chocolate-doom
5836 (package
5837 (name "chocolate-doom")
5838 (version "3.0.0")
5839 (source (origin
5840 (method url-fetch)
5841 (uri (string-append "https://www.chocolate-doom.org/downloads/"
5842 version
5843 "/chocolate-doom-"
5844 version
5845 ".tar.gz"))
5846 (sha256
5847 (base32
5848 "1f6sw6qa9z0a70dsjh5cs45fkyyxw68s7vkqlykihz8cjcisdbkk"))))
5849 (build-system gnu-build-system)
5850 (inputs `(("sdl2-net" ,sdl2-net)
5851 ("sdl2-mixer" , sdl2-mixer)
5852 ("sdl2" ,sdl2)))
5853 (native-inputs
5854 `(("pkg-config" ,pkg-config)))
5855 (synopsis "Doom source port preserving the look, feel, and bugs of vanilla
5856 Doom")
5857 (description
5858 "Chocolate Doom takes a different approach to other source ports. Its
5859 aim is to accurately reproduce the experience of playing Vanilla Doom. It is
5860 a conservative, historically accurate Doom source port, which is compatible
5861 with the thousands of mods and levels that were made before the Doom source
5862 code was released. Rather than flashy new graphics, Chocolate Doom's main
5863 features are its accurate reproduction of the game as it was played in the
5864 1990s. The project is developed around a carefully-considered philosophy that
5865 intentionally restricts which features may be added (and rejects any that
5866 affect gameplay).")
5867 (home-page "https://www.chocolate-doom.org/wiki/index.php/Chocolate_Doom")
5868 (license license:gpl2)))
5869
5870 (define-public crispy-doom
5871 (package
5872 (inherit chocolate-doom)
5873 (name "crispy-doom")
5874 (version "5.6.4")
5875 (source (origin
5876 (method git-fetch)
5877 (uri (git-reference
5878 (url "https://github.com/fabiangreffrath/crispy-doom.git")
5879 (commit (string-append "crispy-doom-" version))))
5880 (file-name (git-file-name name version))
5881 (sha256
5882 (base32 "1ls4v2kpb7vi7xji5yqbmyc5lfkz497h1vvj9w86wkrw8k59hlg2"))))
5883 (native-inputs
5884 (append
5885 (package-native-inputs chocolate-doom)
5886 `(("automake" ,automake)
5887 ("autoreconf" ,autoconf))))
5888 (arguments
5889 `(#:phases
5890 (modify-phases %standard-phases
5891 (replace 'bootstrap
5892 ;; The bundled autogen.sh script unconditionally runs ./configure.
5893 (lambda _ (invoke "autoreconf" "-vif"))))))
5894 (synopsis "Limit-removing enhanced-resolution Doom source port based on
5895 Chocolate Doom")
5896 (description
5897 "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher
5898 display resolution, removes the static limits of the Doom engine and offers
5899 further optional visual, tactical and physical enhancements while remaining
5900 entirely config file, savegame, netplay and demo compatible with the
5901 original.")
5902 (home-page "https://www.chocolate-doom.org/wiki/index.php/Crispy_Doom")))
5903
5904 (define shlomif-cmake-modules
5905 (origin
5906 (method url-fetch)
5907 (uri (string-append "https://bitbucket.org/shlomif/shlomif-cmake-modules/"
5908 "raw/c505713d7a7cda608f97f01577e5868a711b883e/"
5909 "shlomif-cmake-modules/Shlomif_Common.cmake"))
5910 (sha256
5911 (base32 "0kx9s1qqhhzprp1w3b67xmsns0n0v506bg5hgrshxaxpy6lqiwb2"))))
5912
5913 (define-public rinutils
5914 (package
5915 (name "rinutils")
5916 (version "0.2.0")
5917 (source (origin
5918 (method git-fetch)
5919 (uri (git-reference
5920 (url "https://github.com/shlomif/rinutils.git")
5921 (commit version)))
5922 (file-name (git-file-name name version))
5923 (sha256
5924 (base32
5925 "1fpxyg86ggv0h7j8aarjjxrvwlj7jycd3bw066c0dwkq2fszxsf2"))))
5926 (native-inputs
5927 `(("perl" ,perl)
5928 ;; The following is only needed for tests.
5929 ("perl-file-find-object" ,perl-file-find-object)
5930 ("perl-test-differences" ,perl-test-differences)
5931 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5932 ("perl-io-all" ,perl-io-all)
5933 ("perl-test-runvalgrind" ,perl-test-runvalgrind)
5934 ("cmake-rules" ,shlomif-cmake-modules)
5935 ("pkg-config" ,pkg-config)))
5936 (inputs
5937 `(("cmocka" ,cmocka)
5938 ("perl-env-path", perl-env-path)
5939 ("perl-inline" ,perl-inline)
5940 ("perl-inline-c" ,perl-inline-c)
5941 ("perl-string-shellquote" ,perl-string-shellquote)
5942 ("perl-test-trailingspace" ,perl-test-trailingspace)
5943 ("perl-file-find-object-rule" ,perl-file-find-object-rule)
5944 ("perl-text-glob" ,perl-text-glob)
5945 ("perl-number-compare" ,perl-number-compare)
5946 ("perl-moo" ,perl-moo)))
5947 (arguments
5948 `(#:phases
5949 (modify-phases %standard-phases
5950 (add-after 'unpack 'fix-build-env
5951 (lambda* (#:key inputs #:allow-other-keys)
5952 (use-modules (guix build utils))
5953 (let* ((cmake-rules (assoc-ref inputs "cmake-rules")))
5954 (copy-file cmake-rules
5955 (string-append "cmake/"
5956 (strip-store-file-name cmake-rules)))
5957 #t)))
5958 (replace 'check
5959 (lambda _
5960 (with-directory-excursion "../source"
5961 (setenv "FCS_TEST_BUILD" "1")
5962 (setenv "RINUTILS_TEST_BUILD" "1")
5963 ;; TODO: Run tests after setting RINUTILS_TEST_TIDY to `1',
5964 ;; which requires tidy-all.
5965 ;; (setenv "RINUTILS_TEST_TIDY" "1")
5966 (invoke "perl" "CI-testing/continuous-integration-testing.pl")))))))
5967 (build-system cmake-build-system)
5968 (home-page "https://www.shlomifish.org/open-source/projects/")
5969 (synopsis "C11 / gnu11 utilities C library")
5970 (description "This package provides C11 / gnu11 utilities C library")
5971 (license license:expat)))
5972
5973 (define-public fortune-mod
5974 (package
5975 (name "fortune-mod")
5976 (version "2.12.0")
5977 (source
5978 (origin
5979 (method git-fetch)
5980 (uri (git-reference
5981 (url "https://github.com/shlomif/fortune-mod")
5982 (commit (string-append "fortune-mod-" version))))
5983 (file-name (git-file-name name version))
5984 (sha256
5985 (base32
5986 "0laxgqsdg7kvpvvm1f54b94ga9r0cr9g3ffii8avg8fy65x6pzc9"))))
5987 (build-system cmake-build-system)
5988 (arguments
5989 `(#:test-target "check"
5990 #:phases
5991 (modify-phases %standard-phases
5992 (add-after 'unpack 'fix-build-env
5993 (lambda* (#:key inputs #:allow-other-keys)
5994 (use-modules (guix build utils))
5995 (let* ((cmake-rules (assoc-ref inputs "cmake-rules")))
5996 (copy-file cmake-rules
5997 (string-append "fortune-mod/cmake/"
5998 (strip-store-file-name cmake-rules)))
5999 (chdir "fortune-mod")
6000 ;; TODO: Valgrind tests fail for some reason.
6001 ;; Similar issue: https://github.com/shlomif/fortune-mod/issues/21 (?)
6002 (delete-file "tests/t/valgrind.t")
6003 #t)))
6004 (add-after 'install 'fix-install-directory
6005 (lambda* (#:key outputs #:allow-other-keys)
6006 ;; Move binary from "games/" to "bin/" and remove the latter. This
6007 ;; is easier than patching CMakeLists.txt since the tests hard-code
6008 ;; the location as well.
6009 (let* ((out (assoc-ref outputs "out"))
6010 (bin (string-append out "/bin"))
6011 (games (string-append out "/games")))
6012 (rename-file (string-append games "/fortune")
6013 (string-append bin "/fortune"))
6014 (rmdir games)
6015 #t))))))
6016 (inputs `(("recode" ,recode)))
6017 (native-inputs
6018 `(("perl" ,perl)
6019 ;; The following is only needed for tests.
6020 ("perl-file-find-object" ,perl-file-find-object)
6021 ("perl-test-differences" ,perl-test-differences)
6022 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
6023 ("perl-io-all" ,perl-io-all)
6024 ("perl-test-runvalgrind" ,perl-test-runvalgrind)
6025 ("cmake-rules" ,shlomif-cmake-modules)
6026 ("rinutils" ,rinutils)))
6027 (home-page "http://www.shlomifish.org/open-source/projects/fortune-mod/")
6028 (synopsis "The Fortune Cookie program from BSD games")
6029 (description "Fortune is a command-line utility which displays a random
6030 quotation from a collection of quotes.")
6031 (license license:bsd-4)))
6032
6033 (define xonotic-data
6034 (package
6035 (name "xonotic-data")
6036 (version "0.8.2")
6037 (source
6038 (origin
6039 (method url-fetch)
6040 (uri (string-append "http://dl.xonotic.org/xonotic-"
6041 version ".zip"))
6042 (file-name (string-append name "-" version ".zip"))
6043 (sha256
6044 (base32
6045 "1mcs6l4clvn7ibfq3q69k2p0z6ww75rxvnngamdq5ic6yhq74bx2"))))
6046 (build-system trivial-build-system)
6047 (native-inputs
6048 `(("unzip" ,unzip)))
6049 (arguments
6050 `(#:modules ((guix build utils))
6051 #:builder
6052 (begin
6053 (use-modules (guix build utils))
6054 (let* ((out (assoc-ref %outputs "out"))
6055 (xonotic (string-append out "/share/xonotic"))
6056 (source (assoc-ref %build-inputs "source"))
6057 (unzip (string-append (assoc-ref %build-inputs "unzip") "/bin/unzip")))
6058 (copy-file source (string-append ,name "-" ,version ".zip"))
6059 (invoke unzip (string-append ,name "-" ,version ".zip"))
6060 (mkdir-p out)
6061 (mkdir-p xonotic)
6062 (chdir "Xonotic")
6063 (copy-recursively "data"
6064 (string-append xonotic "/data"))
6065 (copy-recursively "server"
6066 (string-append xonotic "/server"))
6067 (install-file "key_0.d0pk" xonotic)))))
6068 (home-page "http://xonotic.org")
6069 (synopsis "Data files for Xonotic")
6070 (description
6071 "Xonotic-data provides the data files required by the game Xonotic.")
6072 (license (list license:gpl2+
6073 (license:x11-style "file://server/rcon.pl")))))
6074
6075 (define-public xonotic
6076 (package
6077 (name "xonotic")
6078 (version "0.8.2")
6079 (source
6080 (origin
6081 (method url-fetch)
6082 (uri (string-append "http://dl.xonotic.org/xonotic-"
6083 version "-source.zip"))
6084 (file-name (string-append name "-" version ".zip"))
6085 (sha256
6086 (base32
6087 "0axxw04fyz6jlfqd0kp7hdrqa0li31sx1pbipf2j5qp9wvqicsay"))))
6088 (build-system gnu-build-system)
6089 (arguments
6090 `(#:configure-flags (list (string-append "--prefix="
6091 (assoc-ref %outputs "out"))
6092 "--disable-rijndael")
6093 #:phases
6094 (modify-phases %standard-phases
6095 (add-before 'configure 'make-darkplaces
6096 (lambda* (#:key outputs #:allow-other-keys)
6097 (let* ((out (assoc-ref outputs "out"))
6098 (sharedir (string-append out "/share/xonotic/")))
6099 (invoke "make" "-C" "source/darkplaces"
6100 (string-append "DP_FS_BASEDIR="
6101 sharedir)
6102 "DP_LINK_TO_LIBJPEG=1"
6103 "DP_SOUND_API=ALSA"
6104 "CC=gcc"
6105 "-f" "makefile"
6106 "cl-release")
6107 (invoke "make" "-C" "source/darkplaces"
6108 (string-append "DP_FS_BASEDIR="
6109 sharedir)
6110 "DP_LINK_TO_LIBJPEG=1"
6111 "DP_SOUND_API=ALSA"
6112 "CC=gcc"
6113 "-f" "makefile"
6114 "sdl-release")
6115 (invoke "make" "-C" "source/darkplaces"
6116 (string-append "DP_FS_BASEDIR="
6117 sharedir)
6118 "DP_LINK_TO_LIBJPEG=1"
6119 "DP_SOUND_API=ALSA"
6120 "CC=gcc"
6121 "-f" "makefile"
6122 "sv-release"))))
6123 (add-before 'configure 'bootstrap
6124 (lambda _
6125 (chdir "source/d0_blind_id")
6126 (invoke "sh" "autogen.sh")))
6127 (add-after 'build 'install-desktop-entry
6128 (lambda* (#:key outputs #:allow-other-keys)
6129 ;; Add .desktop files for the 2 variants and the symlink
6130 (let* ((output (assoc-ref outputs "out"))
6131 (apps (string-append output "/share/applications")))
6132 (mkdir-p apps)
6133 (with-output-to-file
6134 (string-append apps "/xonotic-glx.desktop")
6135 (lambda _
6136 (format #t
6137 "[Desktop Entry]~@
6138 Name=xonotic-glx~@
6139 Comment=Xonotic glx~@
6140 Exec=~a/bin/xonotic-glx~@
6141 TryExec=~@*~a/bin/xonotic-glx~@
6142 Icon=xonotic~@
6143 Categories=Game~@
6144 Type=Application~%"
6145 output)))
6146 (with-output-to-file
6147 (string-append apps "/xonotic-sdl.desktop")
6148 (lambda _
6149 (format #t
6150 "[Desktop Entry]~@
6151 Name=xonotic-sdl~@
6152 Comment=Xonotic sdl~@
6153 Exec=~a/bin/xonotic-sdl~@
6154 TryExec=~@*~a/bin/xonotic-sdl~@
6155 Icon=xonotic~@
6156 Categories=Game~@
6157 Type=Application~%"
6158 output)))
6159 (with-output-to-file
6160 (string-append apps "/xonotic.desktop")
6161 (lambda _
6162 (format #t
6163 "[Desktop Entry]~@
6164 Name=xonotic~@
6165 Comment=Xonotic~@
6166 Exec=~a/bin/xonotic-glx~@
6167 TryExec=~@*~a/bin/xonotic~@
6168 Icon=xonotic~@
6169 Categories=Game~@
6170 Type=Application~%"
6171 output)))
6172 #t)))
6173 (add-after 'install-desktop-entry 'install-icons
6174 (lambda* (#:key outputs #:allow-other-keys)
6175 (let ((out (assoc-ref outputs "out")))
6176 (with-directory-excursion "../../misc/logos/icons_png/"
6177 (for-each
6178 (lambda (file)
6179 (let* ((size (string-filter char-numeric? file))
6180 (icons (string-append out "/share/icons/hicolor/"
6181 size "x" size "/apps")))
6182 (mkdir-p icons)
6183 (copy-file file (string-append icons "/xonotic.png"))))
6184 '("xonotic_16.png" "xonotic_22.png" "xonotic_24.png"
6185 "xonotic_32.png" "xonotic_48.png" "xonotic_64.png"
6186 "xonotic_128.png" "xonotic_256.png" "xonotic_512.png"))))))
6187 (add-after 'install-icons 'install-binaries
6188 (lambda* (#:key outputs #:allow-other-keys)
6189 (let ((out (assoc-ref outputs "out")))
6190 (define (install src dst)
6191 (let ((dst (string-append out dst)))
6192 (mkdir-p (dirname dst))
6193 (copy-file src dst)))
6194 (mkdir-p (string-append out "/bin"))
6195 (install "../darkplaces/darkplaces-dedicated"
6196 "/bin/xonotic-dedicated")
6197 (install "../darkplaces/darkplaces-glx"
6198 "/bin/xonotic-glx")
6199 (install "../darkplaces/darkplaces-sdl"
6200 "/bin/xonotic-sdl")
6201 ;; Provide a default xonotic executable, defaulting to SDL.
6202 (symlink (string-append out "/bin/xonotic-sdl")
6203 (string-append out "/bin/xonotic"))
6204 #t)))
6205 (add-after 'install-binaries 'install-data
6206 (lambda* (#:key outputs inputs #:allow-other-keys)
6207 (let* ((out (assoc-ref outputs "out"))
6208 (data (assoc-ref inputs "xonotic-data")))
6209 (symlink (string-append data "/share/xonotic")
6210 (string-append out "/share/xonotic"))
6211 #t)))
6212 (add-after 'install-binaries 'wrap-binaries
6213 (lambda* (#:key outputs inputs #:allow-other-keys)
6214 ;; Curl and libvorbis need to be wrapped so that we get
6215 ;; sound and networking.
6216 (let* ((out (assoc-ref outputs "out"))
6217 (bin (string-append out "/bin/xonotic"))
6218 (bin-sdl (string-append out "/bin/xonotic-sdl"))
6219 (bin-glx (string-append out "/bin/xonotic-glx"))
6220 (bin-dedicated (string-append out "/bin/xonotic-dedicated"))
6221 (curl (assoc-ref inputs "curl"))
6222 (vorbis (assoc-ref inputs "libvorbis")))
6223 (wrap-program bin
6224 `("LD_LIBRARY_PATH" ":" prefix
6225 (,(string-append curl "/lib:" vorbis "/lib"))))
6226 (wrap-program bin-sdl
6227 `("LD_LIBRARY_PATH" ":" prefix
6228 (,(string-append curl "/lib:" vorbis "/lib"))))
6229 (wrap-program bin-glx
6230 `("LD_LIBRARY_PATH" ":" prefix
6231 (,(string-append curl "/lib:" vorbis "/lib"))))
6232 (wrap-program bin-dedicated
6233 `("LD_LIBRARY_PATH" ":" prefix
6234 (,(string-append curl "/lib:" vorbis "/lib"))))
6235 #t))))))
6236 (inputs
6237 `(("xonotic-data" ,xonotic-data)
6238 ("alsa-lib" ,alsa-lib)
6239 ("curl" ,curl)
6240 ("libjpeg" ,libjpeg)
6241 ("libmodplug" ,libmodplug)
6242 ("libvorbis" ,libvorbis)
6243 ("libogg" ,libogg)
6244 ("libxpm" ,libxpm)
6245 ("libxxf86dga" ,libxxf86dga)
6246 ("libxxf86vm" ,libxxf86vm)
6247 ("libx11" ,libx11)
6248 ("libxext" ,libxext)
6249 ("libxau" ,libxau)
6250 ("libxdmcp" ,libxdmcp)
6251 ("mesa" ,mesa)
6252 ("glu" ,glu)
6253 ("freetype" ,freetype)
6254 ("sdl2" ,sdl2)
6255 ("libpng" ,libpng)
6256 ("hicolor-icon-theme" ,hicolor-icon-theme)))
6257 (native-inputs
6258 `(("unzip" ,unzip)
6259 ("autoconf" ,autoconf)
6260 ("automake" ,automake)
6261 ("pkg-config" ,pkg-config)
6262 ("libtool" ,libtool)
6263 ("gmp" ,gmp)))
6264 (home-page "http://xonotic.org")
6265 (synopsis "Fast-paced first-person shooter game")
6266 (description
6267 "Xonotic is a free, fast-paced first-person shooter.
6268 The project is geared towards providing addictive arena shooter
6269 gameplay which is all spawned and driven by the community itself.
6270 Xonotic is a direct successor of the Nexuiz project with years of
6271 development between them, and it aims to become the best possible
6272 open-source FPS of its kind.")
6273 (license (list license:gpl2+
6274 license:bsd-3 ; /source/d0_blind_id folder and others
6275 (license:x11-style "" "See file rcon.pl.")))))
6276
6277 (define-public frotz
6278 (package
6279 (name "frotz")
6280 (version "2.44")
6281 (source (origin
6282 (method url-fetch)
6283 (uri (list (string-append
6284 "http://www.ifarchive.org/if-archive/infocom/interpreters/"
6285 "frotz/frotz-" version ".tar.gz")
6286 (string-append
6287 "ftp://ftp.ifarchive.org/if-archive/infocom/interpreters/"
6288 "frotz/frotz-" version ".tar.gz")))
6289 (sha256
6290 (base32
6291 "1v735xr3blznac8fnwa27s1vhllx4jpz7kw7qdw1bsfj6kq21v3k"))))
6292 (build-system gnu-build-system)
6293 (arguments
6294 `(#:tests? #f ; there are no tests
6295 #:phases
6296 (modify-phases %standard-phases
6297 (delete 'configure)
6298 (add-before 'build 'curses
6299 (lambda _
6300 (substitute* "Makefile"
6301 (("lcurses") "lncurses"))
6302 #t))
6303 (replace 'install
6304 (lambda* (#:key outputs #:allow-other-keys)
6305 (let* ((out (assoc-ref outputs "out"))
6306 (bin (string-append out "/bin"))
6307 (man (string-append out "/share/man/man6")))
6308 (install-file "frotz" bin)
6309 (mkdir-p man)
6310 (install-file "doc/frotz.6" man)
6311 #t))))))
6312 (inputs `(("libmodplug" ,libmodplug)
6313 ("libsamplerate" ,libsamplerate)
6314 ("libsndfile" ,libsndfile)
6315 ("libvorbis" ,libvorbis)
6316 ("ncurses" ,ncurses)))
6317 (synopsis "Portable Z-machine interpreter (ncurses version) for text adventure games")
6318 (description "Frotz is an interpreter for Infocom games and other Z-machine
6319 games in the text adventure/interactive fiction genre. This version of Frotz
6320 complies with standard 1.0 of Graham Nelson's specification. It plays all
6321 Z-code games V1-V8, including V6, with sound support through libao, and uses
6322 ncurses for text display.")
6323 (home-page "http://frotz.sourceforge.net")
6324 (license license:gpl2+)))
6325
6326 (define-public frotz-dumb-terminal
6327 (package
6328 (name "frotz-dumb-terminal")
6329 (version "2.44")
6330 (source (origin
6331 (method url-fetch)
6332 (uri (list (string-append
6333 "http://www.ifarchive.org/if-archive/infocom/interpreters/"
6334 "frotz/frotz-" version ".tar.gz")
6335 (string-append
6336 "ftp://ftp.ifarchive.org/if-archive/infocom/interpreters/"
6337 "frotz/frotz-" version ".tar.gz")))
6338 (sha256
6339 (base32
6340 "1v735xr3blznac8fnwa27s1vhllx4jpz7kw7qdw1bsfj6kq21v3k"))))
6341 (build-system gnu-build-system)
6342 (arguments
6343 `(#:tests? #f ; there are no tests
6344 #:phases
6345 (modify-phases %standard-phases
6346 (delete 'configure)
6347 (replace 'build
6348 (lambda _
6349 (invoke "make" "dumb")))
6350 (replace 'install
6351 (lambda* (#:key outputs #:allow-other-keys)
6352 (let* ((out (assoc-ref outputs "out"))
6353 (bin (string-append out "/bin"))
6354 (man (string-append out "/share/man/man6")))
6355 (install-file "dfrotz" bin)
6356 (mkdir-p man)
6357 (install-file "doc/dfrotz.6" man)
6358 #t))))))
6359 (synopsis "Portable Z-machine dumb interpreter for text adventure games")
6360 (description "Frotz is an interpreter for Infocom games and
6361 other Z-machine games in the text adventure/interactive fiction genre.
6362 dfrotz is the dumb interface version. You get no screen control; everything
6363 is just printed to the terminal line by line. The terminal handles all the
6364 scrolling. Maybe you'd like to experience what it's like to play Adventure on
6365 a teletype. A much cooler use for compiling Frotz with the dumb interface is
6366 that it can be wrapped in CGI scripting, PHP, and the like to allow people
6367 to play games on webpages. It can also be made into a chat bot.")
6368 (home-page "http://frotz.sourceforge.net")
6369 (license license:gpl2+)))
6370
6371 (define-public frotz-sdl
6372 (let* ((commit "4de8c34f2116fff554af6216c30ec9d41bf50b24"))
6373 (package
6374 (name "frotz-sdl")
6375 (version "2.45pre")
6376 (source (origin
6377 (method git-fetch)
6378 (uri (git-reference
6379 (url "https://gitlab.com/DavidGriffith/frotz")
6380 (commit commit)))
6381 (sha256
6382 (base32
6383 "18ms21pcrl7ipcnyqnf8janamkryzx78frsgd9kfk67jvbj0z2k8"))
6384 (file-name (git-file-name name version))))
6385 (build-system gnu-build-system)
6386 (arguments
6387 `(#:tests? #f ; there are no tests
6388 #:phases
6389 (modify-phases %standard-phases
6390 (delete 'configure)
6391 (add-before 'build 'patch-makefile
6392 (lambda _
6393 (substitute* "Makefile"
6394 (("lcurses") "lncurses")
6395 (("^BUILD_DATE_TIME =.*$")
6396 "BUILD_DATE_TIME = \"2.45pre-20180907.00000\"\n"))
6397 #t))
6398 (replace 'build
6399 (lambda _
6400 (invoke "make" "sdl")))
6401 (replace 'install
6402 (lambda* (#:key outputs #:allow-other-keys)
6403 (let* ((out (assoc-ref outputs "out"))
6404 (bin (string-append out "/bin"))
6405 (man (string-append out "/share/man/man6")))
6406 (install-file "sfrotz" bin)
6407 (mkdir-p man)
6408 (install-file "doc/sfrotz.6" man)
6409 #t))))))
6410 (native-inputs
6411 `(("pkg-config" ,pkg-config)
6412 ("which" ,which)
6413 ("perl" ,perl)))
6414 (inputs `(("sdl2" ,sdl2)
6415 ("sdl2-mixer" ,sdl2-mixer)
6416 ("libmodplug" ,libmodplug)
6417 ("libsamplerate" ,libsamplerate)
6418 ("libsndfile" ,libsndfile)
6419 ("libvorbis" ,libvorbis)
6420 ("ncurses" ,ncurses)
6421 ("freetype" ,freetype)
6422 ("libjpeg-turbo" ,libjpeg-turbo)))
6423 (synopsis "Portable Z-machine interpreter (SDL port) for text adventure games")
6424 (description "Frotz is an interpreter for Infocom games and other Z-machine
6425 games in the text adventure/interactive fiction genre. This version of Frotz
6426 using SDL fully supports all these versions of the Z-Machine including the
6427 graphical version 6. Graphics and sound are created through the use of the SDL
6428 libraries. AIFF sound effects and music in MOD and OGG formats are supported
6429 when packaged in Blorb container files or optionally from individual files.")
6430 (home-page "http://frotz.sourceforge.net")
6431 (license license:gpl2+))))
6432
6433 (define-public libmanette
6434 (package
6435 (name "libmanette")
6436 (version "0.2.3")
6437 (source (origin
6438 (method url-fetch)
6439 (uri (string-append "mirror://gnome/sources/libmanette/"
6440 (version-major+minor version) "/"
6441 "libmanette-" version ".tar.xz"))
6442 (sha256
6443 (base32
6444 "1zxh7jn2zg7hivmal5zxam6fxvjsd1w6hlw0m2kysk76b8anbw60"))))
6445 (build-system meson-build-system)
6446 (native-inputs
6447 `(("glib" ,glib "bin") ; for glib-compile-resources
6448 ("gobject-introspection" ,gobject-introspection)
6449 ("pkg-config" ,pkg-config)
6450 ("vala" ,vala)))
6451 (inputs
6452 `(("libevdev" ,libevdev)
6453 ("libgudev" ,libgudev)))
6454 (home-page "https://wiki.gnome.org/Apps/Games")
6455 (synopsis "Game controller library")
6456 (description "Libmanette is a small GObject library giving you simple
6457 access to game controllers. It supports the de-facto standard gamepads as
6458 defined by the W3C standard Gamepad specification or as implemented by the SDL
6459 GameController.")
6460 (license license:lgpl2.1+)))
6461
6462 (define-public quadrapassel
6463 (package
6464 (name "quadrapassel")
6465 (version "3.32.0")
6466 (source (origin
6467 (method url-fetch)
6468 (uri (string-append "mirror://gnome/sources/quadrapassel/"
6469 (version-major+minor version) "/"
6470 "quadrapassel-" version ".tar.xz"))
6471 (sha256
6472 (base32
6473 "1zhi1957knz9dm98drn2dh95mr33sdch590yddh1f8r6bzsfjvpy"))))
6474 (build-system meson-build-system)
6475 (arguments
6476 '(#:glib-or-gtk? #t
6477 #:phases
6478 (modify-phases %standard-phases
6479 (add-after 'unpack 'skip-gtk-update-icon-cache
6480 ;; Don't create 'icon-theme.cache'.
6481 (lambda _
6482 (substitute* "build-aux/meson_post_install.py"
6483 (("gtk-update-icon-cache") (which "true")))
6484 #t)))))
6485 (native-inputs
6486 `(("desktop-file-utils" ,desktop-file-utils) ;for desktop-file-validate
6487 ("gettext" ,gnu-gettext)
6488 ("glib" ,glib "bin") ;for glib-compile-resources
6489 ("itstool" ,itstool)
6490 ("libxml2" ,libxml2) ;for xmllint
6491 ("pkg-config" ,pkg-config)
6492 ("vala" ,vala)))
6493 (inputs
6494 `(("clutter" ,clutter)
6495 ("clutter-gtk" ,clutter-gtk)
6496 ("gtk+" ,gtk+)
6497 ("libcanberra" ,libcanberra)
6498 ("libmanette" ,libmanette)
6499 ("librsvg" ,librsvg)))
6500 (home-page "https://wiki.gnome.org/Apps/Quadrapassel")
6501 (synopsis "GNOME version of Tetris")
6502 (description "Quadrapassel comes from the classic falling-block game,
6503 Tetris. The goal of the game is to create complete horizontal lines of
6504 blocks, which will disappear. The blocks come in seven different shapes made
6505 from four blocks each: one straight, two L-shaped, one square, and two
6506 S-shaped. The blocks fall from the top center of the screen in a random
6507 order. You rotate the blocks and move them across the screen to drop them in
6508 complete lines. You score by dropping blocks fast and completing lines. As
6509 your score gets higher, you level up and the blocks fall faster.")
6510 (license license:gpl2+)))
6511
6512 (define-public endless-sky
6513 (package
6514 (name "endless-sky")
6515 (version "0.9.10")
6516 (source
6517 (origin
6518 (method git-fetch)
6519 (uri (git-reference
6520 (url "https://github.com/endless-sky/endless-sky")
6521 (commit (string-append "v" version))))
6522 (file-name (git-file-name name version))
6523 (sha256
6524 (base32
6525 "1wax9qhxakydg6bs92d1jy2fki1n9r0wkps1np02y0pvm1fl189i"))))
6526 (build-system scons-build-system)
6527 (arguments
6528 `(#:scons ,scons-python2
6529 #:scons-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
6530 #:tests? #f ; no tests
6531 #:phases
6532 (modify-phases %standard-phases
6533 (add-after 'unpack 'patch-resource-locations
6534 (lambda* (#:key outputs #:allow-other-keys)
6535 (substitute* "source/Files.cpp"
6536 (("/usr/local/")
6537 (string-append (assoc-ref outputs "out") "/")))
6538 #t))
6539 (add-after 'unpack 'patch-scons
6540 (lambda _
6541 (substitute* "SConstruct"
6542 ;; Keep environmental variables
6543 (("Environment\\(\\)")
6544 "Environment(ENV = os.environ)")
6545 ;; Install into %out/bin
6546 (("games\"") "bin\""))
6547 #t)))))
6548 (inputs
6549 `(("glew" ,glew)
6550 ("libjpeg" ,libjpeg-turbo)
6551 ("libmad" ,libmad)
6552 ("libpng" ,libpng)
6553 ("openal" ,openal)
6554 ("sdl2" ,sdl2)))
6555 (home-page "https://endless-sky.github.io/")
6556 (synopsis "2D space trading and combat game")
6557 (description "Endless Sky is a 2D space trading and combat game. Explore
6558 other star systems. Earn money by trading, carrying passengers, or completing
6559 missions. Use your earnings to buy a better ship or to upgrade the weapons and
6560 engines on your current one. Blow up pirates. Take sides in a civil war. Or
6561 leave human space behind and hope to find friendly aliens whose culture is more
6562 civilized than your own.")
6563 (license (list license:gpl3+
6564 license:cc-by-sa3.0
6565 license:cc-by-sa4.0
6566 license:public-domain))))
6567
6568 (define-public stepmania
6569 (package
6570 (name "stepmania")
6571 (version "5.1.0-b2")
6572 (source
6573 (origin
6574 (method git-fetch)
6575 (uri (git-reference
6576 (url "https://github.com/stepmania/stepmania.git")
6577 (commit (string-append "v" version))))
6578 (file-name (git-file-name name version))
6579 (sha256
6580 (base32
6581 "0a7y9l7xm510vgnpmj1is7p9m6d6yd0fcaxrjcickz295k5w3rdn"))
6582 (modules '((guix build utils)))
6583 (snippet
6584 '(begin
6585 ;; Remove song files, which are licensed under a non-commercial
6586 ;; clause, and a course pointing to them.
6587 (for-each delete-file-recursively
6588 '("Songs/StepMania 5/Goin' Under"
6589 "Songs/StepMania 5/MechaTribe Assault"
6590 "Songs/StepMania 5/Springtime"))
6591 (for-each delete-file '("Courses/Default/Jupiter.crs"
6592 "Courses/Default/Jupiter.png"))
6593 ;; Unbundle libpng.
6594 (substitute* "extern/CMakeLists.txt"
6595 (("include\\(CMakeProject-png.cmake\\)") ""))
6596 (delete-file-recursively "extern/libpng")
6597 #t))))
6598 (build-system cmake-build-system)
6599 (arguments
6600 `(#:tests? #f ;FIXME: couldn't find how to run tests
6601 #:build-type "Release"
6602 #:out-of-source? #f ;for the 'install-desktop' phase
6603 #:configure-flags
6604 (list "-DWITH_SYSTEM_FFMPEG=1"
6605 ;; SSE instructions are available on Intel systems only.
6606 ,@(if (any (cute string-prefix? <> (or (%current-target-system)
6607 (%current-system)))
6608 '("x64_64" "i686"))
6609 '()
6610 '("-DWITH_SSE2=NO"))
6611 ;; Configuration cannot find GTK2 without the two following
6612 ;; flags.
6613 (string-append "-DGTK2_GDKCONFIG_INCLUDE_DIR="
6614 (assoc-ref %build-inputs "gtk+")
6615 "/lib/gtk-2.0/include")
6616 (string-append "-DGTK2_GLIBCONFIG_INCLUDE_DIR="
6617 (assoc-ref %build-inputs "glib")
6618 "/lib/glib-2.0/include"))
6619 #:phases
6620 (modify-phases %standard-phases
6621 (add-after 'unpack 'ensure-application-files-can-be-found
6622 (lambda* (#:key outputs #:allow-other-keys)
6623 (let ((out (assoc-ref outputs "out")))
6624 (substitute* "src/arch/LoadingWindow/LoadingWindow_Gtk.cpp"
6625 (("RageFileManagerUtil::sDirOfExecutable \\+ \"/\" \\+ \"GtkModule.so\"")
6626 (string-append "\"" out
6627 "/share/stepmania/GtkModule.so\"")))
6628 (substitute* "src/arch/ArchHooks/ArchHooks_Unix.cpp"
6629 (("Root = sDirOfExecutable")
6630 (string-append "Root = \"" out "/share/stepmania/\""))
6631 (("sDirOfExecutable \\+ \"/(Packages|Songs)\"" _ dir)
6632 (string-append "\"" out "/share/stepmania/" dir "\"")))
6633 (substitute* "src/RageFileManager.cpp"
6634 (("RageFileManagerUtil::sDirOfExecutable \\+ \"/\"")
6635 (string-append "\"" out "/share/stepmania/\""))))
6636 #t))
6637 (add-after 'unpack 'fix-install-subdir
6638 ;; Installation would be done in "%out/stepmania-X.Y", but we
6639 ;; prefer the more common layout "%out/share/stepmania".
6640 (lambda _
6641 (substitute* "src/CMakeLists.txt"
6642 (("\"stepmania-.*?\"") "\"share/stepmania\""))
6643 #t))
6644 (add-after 'unpack 'unbundle-libpng
6645 (lambda* (#:key inputs #:allow-other-keys)
6646 (substitute* "src/CMakeLists.txt"
6647 (("\\$\\{SM_EXTERN_DIR\\}/libpng/include")
6648 (string-append (assoc-ref inputs "libpng") "/include")))
6649 #t))
6650 (add-after 'install 'install-executable
6651 (lambda* (#:key outputs #:allow-other-keys)
6652 (let* ((out (assoc-ref outputs "out"))
6653 (bin (string-append out "/bin"))
6654 (exe (string-append out "/share/stepmania/stepmania")))
6655 (mkdir-p bin)
6656 (symlink exe (string-append bin "/stepmania"))
6657 #t)))
6658 (add-after 'install-executable 'install-desktop
6659 (lambda* (#:key outputs #:allow-other-keys)
6660 (let* ((out (assoc-ref outputs "out"))
6661 (share (string-append out "/share"))
6662 (applications (string-append share "/applications"))
6663 (icons (string-append share "/icons")))
6664 (install-file "stepmania.desktop" applications)
6665 (mkdir-p icons)
6666 (copy-recursively "icons" icons)
6667 #t)))
6668 ;; Move documentation in a more usual place, i.e.,
6669 ;; "%out/share/doc/stepmania/".
6670 (add-after 'install-desktop 'install-doc
6671 (lambda* (#:key outputs #:allow-other-keys)
6672 (let* ((out (assoc-ref outputs "out"))
6673 (share (string-append out "/share")))
6674 (with-directory-excursion share
6675 (mkdir-p "doc")
6676 (symlink "../stepmania/Docs" "doc/stepmania"))
6677 #t))))))
6678 (native-inputs
6679 `(("pkg-config" ,pkg-config)
6680 ("yasm" ,yasm)))
6681 (inputs
6682 `(("alsa-lib" ,alsa-lib)
6683 ;; Per upstream, StepMania is only guaranteed to work with a very
6684 ;; specific FFmpeg version, which is included in the repository as
6685 ;; a Git submodule. This particular version requirement usually
6686 ;; changes every few years.
6687 ("ffmpeg" ,ffmpeg-for-stepmania)
6688 ("glib" ,glib)
6689 ("glew" ,glew)
6690 ("gtk+" ,gtk+-2)
6691 ("jsoncpp" ,jsoncpp)
6692 ("libpng" ,libpng)
6693 ("libjpeg" ,libjpeg-turbo)
6694 ("libmad" ,libmad)
6695 ("libogg" ,libogg)
6696 ("libva" ,libva)
6697 ("libvorbis" ,libvorbis)
6698 ("libxinerama" ,libxinerama)
6699 ("libxrandr" ,libxrandr)
6700 ("mesa" ,mesa)
6701 ("pcre" ,pcre)
6702 ("pulseaudio" ,pulseaudio)
6703 ("sdl" ,sdl2)
6704 ("udev" ,eudev)
6705 ("zlib" ,zlib)))
6706 (synopsis "Advanced rhythm game designed for both home and arcade use")
6707 (description "StepMania is a dance and rhythm game. It features 3D
6708 graphics, keyboard and dance pad support, and an editor for creating your own
6709 steps.
6710
6711 This package provides the core application, but no song is shipped. You need
6712 to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory.")
6713 (home-page "https://www.stepmania.com")
6714 (license license:expat)))
6715
6716 (define-public btanks
6717 (package
6718 (name "btanks")
6719 (version "0.9.8083")
6720 (source
6721 (origin
6722 (method url-fetch)
6723 (uri (string-append "mirror://sourceforge/btanks/btanks-source/"
6724 "btanks-" version ".tar.bz2"))
6725 (sha256
6726 (base32
6727 "0ha35kxc8xlbg74wsrbapfgxvcrwy6psjkqi7c6adxs55dmcxliz"))))
6728 (build-system scons-build-system)
6729 (arguments
6730 `(#:tests? #f ; there are none
6731 #:scons ,scons-python2
6732 #:scons-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
6733 #:phases
6734 (modify-phases %standard-phases
6735 (add-after 'unpack 'replace-removed-scons-syntax
6736 (lambda _
6737 (substitute* "SConstruct"
6738 (("Options") "Variables")
6739 (("opts.Add\\(BoolOption.*") "opts.Add('gcc_visibility', 'gcc visibility', 'true')")
6740 (("opts.Add\\(EnumOption.*") "opts.Add('mode', 'build mode', 'release')"))
6741 #t))
6742 (add-after 'set-paths 'set-sdl-paths
6743 (lambda* (#:key inputs #:allow-other-keys)
6744 (setenv "CPATH"
6745 (string-append (assoc-ref inputs "sdl")
6746 "/include/SDL:"
6747 (or (getenv "CPATH") "")))
6748 #t))
6749 (add-after 'unpack 'fix-compilation-errors
6750 (lambda _
6751 (substitute* "mrt/base_file.h"
6752 (("#include <string>" m)
6753 (string-append m "\n#include <sys/types.h>")))
6754 (substitute* '("engine/sl08/sl08.h"
6755 "engine/sl08/sl08.py")
6756 (("signal = NULL") "signal = 0")
6757 (("object\\(NULL\\)") "object(0)")
6758 (("func\\(NULL\\)") "func(0)")
6759 ((" connect\\(signal_ref\\)")
6760 " this->connect(signal_ref)"))
6761 (substitute* "math/range_list.h"
6762 ((" lower_bound\\(value\\)")
6763 " this->lower_bound(value)")
6764 ((" erase\\(i\\)")
6765 " this->erase(i)"))
6766 (substitute* "clunk/source.cpp"
6767 (("using namespace clunk" m)
6768 (string-append "# define pow10f(x) exp10f(x)\n" m)))
6769 #t))
6770 (add-after 'unpack 'find-lua
6771 (lambda _
6772 (substitute* "engine/SConscript"
6773 (("lua5.1") "lua-5.1")
6774 (("bt_libs.append\\(lua\\)")
6775 "bt_libs.append(\"lua\")"))
6776 #t)))))
6777 (inputs
6778 `(("expat" ,expat)
6779 ("glu" ,glu)
6780 ("libsmpeg" ,libsmpeg-with-sdl1)
6781 ("libvorbis" ,libvorbis)
6782 ("lua51" ,lua-5.1)
6783 ("sdl" ,(sdl-union (list sdl
6784 sdl-mixer
6785 sdl-image
6786 sdl-ttf)))
6787 ("zlib" ,zlib)))
6788 (native-inputs
6789 `(("pkg-config" ,pkg-config)
6790 ("zip" ,zip)))
6791 (home-page "http://btanks.sourceforge.net")
6792 (synopsis "Multiplayer tank battle game")
6793 (description "Battle Tanks (also known as \"btanks\") is a funny battle
6794 game, where you can choose one of three vehicles and eliminate your enemy
6795 using the whole arsenal of weapons. It has original cartoon-like graphics and
6796 cool music, it’s fun and dynamic, it has several network modes for deathmatch
6797 and cooperative.")
6798 ;; Some parts (e.g. mrt/b64.cpp) are LGPLv2.1+, but the whole package is
6799 ;; released under GPLv2 or later. It comes with extra exceptions for the
6800 ;; developers.
6801 (license (list license:gpl2+ license:lgpl2.1+))))
6802
6803 (define-public battle-tanks
6804 (deprecated-package "battle-tanks" btanks))
6805
6806 (define-public slingshot
6807 (package
6808 (name "slingshot")
6809 (version "0.9")
6810 (source
6811 (origin
6812 (method git-fetch)
6813 (uri (git-reference
6814 (url "https://github.com/ryanakca/slingshot.git")
6815 (commit version)))
6816 (file-name (git-file-name name version))
6817 (sha256
6818 (base32
6819 "19m8b6nsi786bc6gmkp185mwri3r5y249gjmqd5qsc23nnfhgrs1"))))
6820 (build-system python-build-system)
6821 (arguments
6822 `(#:python ,python-2))
6823 (inputs
6824 `(("python-pygame" ,python2-pygame)))
6825 (home-page "https://github.com/ryanakca/slingshot")
6826 (synopsis "Simple 2D shooting strategy game set in space")
6827 (description "Slingshot is a two-dimensional strategy game where two
6828 players attempt to shoot one another through a section of space populated by
6829 planets. The main feature of the game is that the shots, once fired, are
6830 affected by the gravity of the planets.")
6831 (license license:gpl2+)))
6832
6833 (define-public 4dtris
6834 (package
6835 (name "4dtris")
6836 (version "0.4.3")
6837 (source
6838 (origin
6839 (method url-fetch)
6840 (uri (string-append "https://launchpad.net/4dtris/"
6841 (version-major+minor version)
6842 "/" version "/+download/4dtris_"
6843 version ".orig.tar.gz"))
6844 (sha256
6845 (base32
6846 "1nfkhcm0l89jyw8yr65na97g4l385zhjf7whkyg47c3v5sdqq2g7"))))
6847 (build-system gnu-build-system)
6848 (arguments
6849 `(#:phases
6850 (modify-phases %standard-phases
6851 (add-after 'unpack 'fix-install-directories
6852 (lambda* (#:key outputs #:allow-other-keys)
6853 (let ((out (assoc-ref outputs "out")))
6854 (substitute* "Makefile.in"
6855 (("bindir = /usr/games")
6856 (string-append "bindir = " out "/bin"))
6857 (("/usr/share/applications")
6858 (string-append out "/share/applications"))
6859 (("/usr/share/games/4dtris")
6860 (string-append out "/share/4dtris"))))
6861 #t))
6862 (add-after 'set-paths 'set-sdl-paths
6863 (lambda* (#:key inputs #:allow-other-keys)
6864 (setenv "CPATH"
6865 (string-append (assoc-ref inputs "sdl")
6866 "/include/SDL:"
6867 (or (getenv "CPATH") "")))
6868 #t)))))
6869 (inputs
6870 `(("fontconfig" ,fontconfig)
6871 ("freeglut" ,freeglut)
6872 ("sdl" ,(sdl-union (list sdl sdl-ttf)))))
6873 (home-page "https://launchpad.net/4dtris/")
6874 (synopsis "4D Tetris")
6875 (description "4D-TRIS is an alteration of the well-known Tetris game. The
6876 game field is extended to 4D space, which has to filled up by the gamer with
6877 4D hyper cubes.")
6878 (license license:gpl3)))
6879
6880 (define-public arx-libertatis
6881 (package
6882 (name "arx-libertatis")
6883 (version "1.1.2")
6884 (source
6885 (origin
6886 (method url-fetch)
6887 (uri (string-append "http://arx-libertatis.org/files/arx-libertatis-"
6888 version ".tar.xz"))
6889 (sha256
6890 (base32
6891 "0hjfxlsmp8wwqr06snv2dlly2s79ra0d9aw49gkp6rn8m50b9bc2"))))
6892 (build-system cmake-build-system)
6893 (outputs '("out" "installer"))
6894 (arguments
6895 '(#:tests? #f ; No tests.
6896 #:phases
6897 (modify-phases %standard-phases
6898 (add-after 'unpack 'fix-install-helper-paths
6899 (lambda* (#:key inputs #:allow-other-keys)
6900 (let ((p7zip (assoc-ref inputs "p7zip"))
6901 (innoextract (assoc-ref inputs "innoextract"))
6902 (wget (assoc-ref inputs "wget"))
6903 (zenity (assoc-ref inputs "zenity")))
6904 (substitute* "scripts/arx-install-data"
6905 (("have innoextract")
6906 (string-append "have " innoextract "/bin/innoextract"))
6907 (("then innoextract")
6908 (string-append "then " innoextract "/bin/innoextract"))
6909 (("else innoextract")
6910 (string-append "else " innoextract "/bin/innoextract"))
6911 (("for _extract_zip_sz in 7za 7z")
6912 (string-append "for _extract_zip_sz in " p7zip "/bin/7za"))
6913 (("else if have 7z")
6914 (string-append "else if have " p7zip "/bin/7za"))
6915 (("7z x -tiso")
6916 (string-append p7zip "/bin/7z x -tiso"))
6917 (("if have wget")
6918 (string-append "if have " wget "/bin/wget"))
6919 (("wget -O")
6920 (string-append wget "/bin/wget -O"))
6921 (("for backend in \\$preferred zenity")
6922 (string-append "for backend in $preferred " zenity "/bin/zenity"))
6923 (("zenity +--title")
6924 (string-append zenity "/bin/zenity --title"))
6925 (("^zenity\\)")
6926 (string-append zenity "/bin/zenity)"))))
6927 #t))
6928 (add-after 'install 'move-installer
6929 (lambda* (#:key outputs #:allow-other-keys)
6930 (let ((out (assoc-ref outputs "out"))
6931 (installer (assoc-ref outputs "installer")))
6932 (mkdir-p (string-append installer "/bin"))
6933 (rename-file (string-append out "/bin/arx-install-data")
6934 (string-append installer "/bin/arx-install-data"))))))))
6935 (inputs
6936 `(("sdl" ,sdl) ; Switch to sdl2 in >1.1.2.
6937 ("mesa" ,mesa) ; Switch to libepoxy in >1.1.2.
6938 ("glew" ,glew)
6939 ("openal" ,openal)
6940 ("zlib" ,zlib)
6941 ("boost" ,boost)
6942 ("glm" ,glm)
6943 ("freetype" ,freetype)
6944 ;; The following are only needed by the arx-install-data script.
6945 ("p7zip" ,p7zip) ; Install-helper uses it to extract ISO and .cab archives.
6946 ("zenity" ,zenity) ; GUI for install-helper.
6947 ("wget" ,wget) ; Used by the install-helper to download the patch.
6948 ;; The install-helper needs it to extract the patch.
6949 ("innoextract" ,innoextract)))
6950 (home-page "https://arx-libertatis.org/")
6951 (synopsis "Port of Arx Fatalis, a first-person role-playing game")
6952 (description "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002
6953 first-person role-playing game / dungeon crawler developed by Arkane Studios.
6954 This port however does not include the game data, so you need to obtain a copy
6955 of the original Arx Fatalis or its demo to play Arx Libertatis. Arx Fatalis
6956 features crafting, melee and ranged combat, as well as a unique casting system
6957 where the player draws runes in real time to effect the desired spell.")
6958 (license license:gpl3+)))
6959
6960 (define-public edgar
6961 (package
6962 (name "edgar")
6963 (version "1.32")
6964 (source
6965 (origin
6966 (method url-fetch)
6967 (uri
6968 (string-append "https://github.com/riksweeney/edgar/releases/download/"
6969 version "/edgar-" version "-1.tar.gz"))
6970 (sha256
6971 (base32 "12lam6qcscc5ima1w2ksd1cvsvxbd17h6mqkgsqpzx8ap43p2r5p"))))
6972 (build-system gnu-build-system)
6973 (arguments '(#:tests? #f ; there are no tests
6974 #:make-flags
6975 (list "CC=gcc"
6976 (string-append "PREFIX=" (assoc-ref %outputs "out"))
6977 (string-append "BIN_DIR=" (assoc-ref %outputs "out") "/bin/"))
6978 #:phases
6979 (modify-phases %standard-phases
6980 (delete 'configure)
6981 (add-before 'build 'fix-env
6982 (lambda* (#:key inputs #:allow-other-keys)
6983 (setenv "CPATH"
6984 (string-append (assoc-ref inputs "sdl2-union")
6985 "/include/SDL2:"
6986 (or (getenv "CPATH") "")))
6987 #t)))))
6988 (inputs
6989 `(("sdl2-union" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))
6990 ("zlib" ,zlib)))
6991 (native-inputs
6992 `(("pkg-config" ,pkg-config)
6993 ("autoconf" ,autoconf)
6994 ("automake" ,automake)
6995 ("gnu-gettext" ,gnu-gettext)
6996 ("libtool" ,libtool)
6997 ("which" ,which)))
6998 (synopsis "2d action platformer game")
6999 (description "The Legend of Edgar is a 2D platform game with a persistent world.
7000 When Edgar's father fails to return home after venturing out one dark and stormy night,
7001 Edgar fears the worst: he has been captured by the evil sorcerer who lives in
7002 a fortress beyond the forbidden swamp.")
7003 (home-page "https://www.parallelrealities.co.uk/games/edgar/")
7004 (license license:gpl2+)))
7005
7006 (define-public the-legend-of-edgar
7007 (deprecated-package "the-legend-of-edgar" edgar))
7008
7009 (define-public openclonk
7010 (package
7011 (name "openclonk")
7012 (version "8.1")
7013 (source (origin
7014 (method url-fetch)
7015 (uri (string-append
7016 "https://www.openclonk.org/builds/release/" version "/"
7017 "openclonk-" version "-src.tar.bz2"))
7018 (sha256
7019 (base32
7020 "0imkqjp8lww5p0cnqf4k4mb2v682mnsas63qmiz17rspakr7fxik"))))
7021 (build-system cmake-build-system)
7022 (arguments
7023 `(#:configure-flags '("-DAudio_TK=OpenAL")
7024 #:test-target "tests"
7025 #:phases
7026 (modify-phases %standard-phases
7027 (add-after 'unpack 'prepare-gmock
7028 (lambda* (#:key inputs #:allow-other-keys)
7029 (mkdir "gmock")
7030 (copy-recursively (assoc-ref inputs "googlemock") "gmock")
7031 (substitute* "tests/CMakeLists.txt"
7032 (("/usr/src/gmock")
7033 (string-append (getcwd) "/gmock/googlemock"))
7034 (("/usr/src/gtest")
7035 (string-append (getcwd) "/gmock/googletest"))
7036 (("PATH_SUFFIXES \"src\" \"gtest\"")
7037 "PATH_SUFFIXES \"src\""))
7038 #t))
7039 (add-after 'unpack 'adjust-backward-cpp-includes
7040 (lambda _
7041 ;; XXX: The bundled backward-cpp exports a CMake "interface"
7042 ;; that includes external libraries such as libdl from glibc.
7043 ;; By default, CMake interface includes are treated as "system
7044 ;; headers", and GCC behaves poorly when glibc is passed as a
7045 ;; system header (causing #include_next failures).
7046
7047 ;; Here we prevent targets that consume the Backward::Backward
7048 ;; interface from treating it as "system includes".
7049 (substitute* "CMakeLists.txt"
7050 (("target_link_libraries\\((.+) Backward::Backward\\)" all target)
7051 (string-append "set_property(TARGET " target " PROPERTY "
7052 "NO_SYSTEM_FROM_IMPORTED true)\n"
7053 all)))
7054 #t))
7055 (add-after 'unpack 'add-libiberty
7056 ;; Build fails upon linking executables without this.
7057 (lambda _
7058 (substitute* "thirdparty/backward-cpp/BackwardConfig.cmake"
7059 (("set\\(LIBBFD_LIBRARIES (.*?)\\)" _ libraries)
7060 (string-append "set(LIBBFD_LIBRARIES " libraries " iberty)")))
7061 #t))
7062 (add-after 'add-libiberty 'lax-freealut-requirement
7063 ;; TODO: We provide freealut 1.1.0, but pkg-config somehow detects
7064 ;; it as 1.0.1. Force minimal version.
7065 (lambda _
7066 (substitute* "cmake/FindAudio.cmake"
7067 (("freealut>=1.1.0") "freealut>=1.0.1"))
7068 #t))
7069 (add-after 'lax-freealut-requirement 'fix-directories
7070 ;; Prefer "$out/share/openclonk" over
7071 ;; "$out/share/games/openclonk". Also install "openclonk"
7072 ;; binary in "bin/", not "games/".
7073 (lambda _
7074 (substitute* "CMakeLists.txt"
7075 (("share/games/openclonk") "share/openclonk")
7076 (("TARGETS openclonk DESTINATION games")
7077 "TARGETS openclonk DESTINATION bin"))
7078 #t)))))
7079 (native-inputs
7080 `(("googlemock" ,(package-source googletest))
7081 ("googletest" ,googletest)
7082 ("pkg-config" ,pkg-config)))
7083 (inputs
7084 `(("freealut" ,freealut)
7085 ("freetype" ,freetype)
7086 ("glew" ,glew)
7087 ("libiberty" ,libiberty)
7088 ("libjpeg" ,libjpeg-turbo)
7089 ("libogg" ,libogg)
7090 ("libpng" ,libpng)
7091 ("libvorbis" ,libvorbis)
7092 ("libxrandr" ,libxrandr)
7093 ("mesa" ,mesa)
7094 ("miniupnpc" ,miniupnpc)
7095 ("openal" ,openal)
7096 ("qtbase" ,qtbase)
7097 ("readline" ,readline)
7098 ("sdl" ,sdl2)
7099 ("tinyxml" ,tinyxml)
7100 ("zlib" ,zlib)))
7101 (home-page "https://www.openclonk.org/")
7102 (synopsis
7103 "Multiplayer action game where you control small and nimble humanoids")
7104 (description "OpenClonk is a multiplayer action/tactics/skill game. It is
7105 often referred to as a mixture of The Settlers and Worms. In a simple 2D
7106 antfarm-style landscape, the player controls a crew of Clonks, small but
7107 robust humanoid beings. The game encourages free play but the normal goal is
7108 to either exploit valuable resources from the earth by building a mine or
7109 fight each other on an arena-like map.")
7110 ;; Software as a whole is licensed under ISC, artwork under CC-BY.
7111 (license (list license:isc license:cc-by3.0))))
7112
7113 (define-public flare-engine
7114 (package
7115 (name "flare-engine")
7116 (version "1.11")
7117 (source (origin
7118 (method git-fetch)
7119 (uri (git-reference
7120 (url "https://github.com/flareteam/flare-engine.git")
7121 (commit (string-append "v" version))))
7122 (file-name (git-file-name name version))
7123 (sha256
7124 (base32
7125 "1mqr1s72p5bdh4kq2a8hg72dk8lwnddicjnd2cdp1sbfa9lmjym8"))))
7126 (build-system cmake-build-system)
7127 (arguments
7128 `(#:tests? #f ;no test
7129 #:configure-flags '("-DBINDIR=bin" "-DDATADIR=share/flare")))
7130 (inputs
7131 `(("hicolor-icon-theme" ,hicolor-icon-theme)
7132 ("python" ,python-wrapper)
7133 ("sdl" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))))
7134 (home-page "http://www.flarerpg.org/")
7135 (synopsis "Action Roleplaying Engine")
7136 (description "Flare (Free Libre Action Roleplaying Engine) is a simple
7137 game engine built to handle a very specific kind of game: single-player 2D
7138 action RPGs.")
7139 (license license:gpl3+)))
7140
7141 (define-public flare-game
7142 (package
7143 (name "flare-game")
7144 (version "1.11")
7145 (source (origin
7146 (method git-fetch)
7147 (uri (git-reference
7148 (url "https://github.com/flareteam/flare-game.git")
7149 (commit (string-append "v" version))))
7150 (file-name (git-file-name name version))
7151 (sha256
7152 (base32
7153 "0bd5g7sd89a9176ilr408hdqzdfv4j7wj0idd685c1n6s01c3h6p"))))
7154 (build-system cmake-build-system)
7155 (arguments
7156 `(#:tests? #f ;no test
7157 #:configure-flags '("-DDATADIR=share/flare")
7158 #:phases
7159 (modify-phases %standard-phases
7160 ;; Flare expects the mods to be located in the same folder.
7161 ;; Yet, "default" mod is in the engine, whereas the others
7162 ;; are in the current package. Merge everything here with
7163 ;; a symlink.
7164 (add-after 'install 'add-default-mod
7165 (lambda* (#:key inputs outputs #:allow-other-keys)
7166 (let* ((out (assoc-ref outputs "out"))
7167 (mods (string-append out "/share/flare/mods")))
7168 (with-directory-excursion mods
7169 (symlink (string-append (assoc-ref inputs "flare-engine")
7170 "/share/flare/mods/default")
7171 "default")))
7172 #t))
7173 (add-after 'install 'install-executable
7174 ;; The package only provides assets for the game, the
7175 ;; executable coming from "flare-engine". Since more than
7176 ;; one game may use the engine, we create a new executable,
7177 ;; "flare-game", which launches the engine with appropriate
7178 ;; parameters.
7179 (lambda* (#:key inputs outputs #:allow-other-keys)
7180 (let* ((out (assoc-ref outputs "out"))
7181 (bash (string-append (assoc-ref inputs "bash")
7182 "/bin/bash"))
7183 (flare (string-append (assoc-ref inputs "flare-engine")
7184 "/bin/flare"))
7185 (script (string-append out "/bin/flare-game")))
7186 (mkdir-p (dirname script))
7187 (call-with-output-file script
7188 (lambda (port)
7189 (format port
7190 "#!~a
7191 exec ~a --data-path=~a/share/flare --mods=empyrean_campaign~%"
7192 bash
7193 flare
7194 out)))
7195 (chmod script #o755))
7196 #t)))))
7197 (inputs
7198 `(("flare-engine" ,flare-engine)))
7199 (home-page "http://www.flarerpg.org/")
7200 (synopsis "Fantasy action RPG using the FLARE engine")
7201 (description "Flare is a single-player 2D action RPG with
7202 fast-paced action and a dark fantasy style.")
7203 (license license:cc-by-sa3.0)))
7204
7205 (define-public meritous
7206 (package
7207 (name "meritous")
7208 (version "1.5")
7209 (source (origin
7210 (method git-fetch)
7211 (uri (git-reference
7212 (url "https://gitlab.com/meritous/meritous.git")
7213 (commit (string-append "v" version))))
7214 (file-name (git-file-name name version))
7215 (sha256
7216 (base32
7217 "0n5jm4g0arjllgqmd2crv8h02i6hs3hlh1zyc7ng7yfpg1mbd8p8"))))
7218 (build-system gnu-build-system)
7219 (arguments
7220 `(#:tests? #f ;no test
7221 #:make-flags
7222 (list "CC=gcc"
7223 (string-append "prefix=" (assoc-ref %outputs "out")))
7224 #:phases
7225 (modify-phases %standard-phases
7226 (delete 'configure)
7227 (add-after 'unpack 'fix-sdl-path
7228 ;; XXX: For some reason, `sdl-config' reports stand-alone SDL
7229 ;; directory, not SDL-union provided as an input to the package.
7230 ;; We force the latter with "--prefix=" option.
7231 (lambda* (#:key inputs #:allow-other-keys)
7232 (substitute* "Makefile"
7233 (("sdl-config" command)
7234 (string-append command " --prefix=" (assoc-ref inputs "sdl"))))
7235 #t))
7236 (add-after 'unpack 'fix-crash
7237 ;; XXX: Songs are not present in the repository, due to licensing
7238 ;; issues. Yet, the game tries to load them, and, since it cannot
7239 ;; find them, crashes. Users cannot add them back, the store being
7240 ;; read-only, so we turn off background music altogether.
7241 (lambda _
7242 (substitute* "src/audio.c"
7243 (("PlayBackgroundMusic\\(new_track\\);" all)
7244 (string-append "// " all)))
7245 #t)))))
7246 (native-inputs
7247 `(("intltool" ,intltool)))
7248 (inputs
7249 `(("sdl" ,(sdl-union (list sdl sdl-image sdl-mixer)))
7250 ("zlib" ,zlib)))
7251 (home-page "https://gitlab.com/meritous/meritous")
7252 (synopsis "Action-adventure dungeon crawl game")
7253 (description "Far below the surface of the planet is a place of limitless
7254 power. Those that seek to control such a utopia will soon bring an end to
7255 themselves. Seeking an end to the troubles that plague him, PSI user Merit
7256 journeys into the hallowed Orcus Dome in search of answers.
7257
7258 Meritous is a action-adventure game with simple controls but a challenge to
7259 find a balance of power versus recovery time during real-time battles. Set in
7260 a procedurally generated world, the player can explore thousands of rooms in
7261 search of powerful artifacts, tools to help them, and to eventually free the
7262 Orcus Dome from evil.")
7263 (license license:gpl3+)))
7264
7265 (define-public marble-marcher
7266 (let ((commit "e580460a0c3826f9b28ab404607942a8ecb625d7")
7267 (revision "1"))
7268 (package
7269 (name "marble-marcher")
7270 (version (git-version "0" revision commit))
7271 (source (origin
7272 (method git-fetch)
7273 (uri (git-reference
7274 (url "https://github.com/HackerPoet/MarbleMarcher.git")
7275 (commit commit)))
7276 (file-name (git-file-name name version))
7277 (sha256
7278 (base32
7279 "0jjv832hl1v170n6gryp2sr3lgqndi9ab841qvgqk68bks8701mx"))))
7280 (build-system cmake-build-system)
7281 (arguments
7282 `(#:tests? #f ; there are none
7283 #:phases
7284 (modify-phases %standard-phases
7285 (add-after 'unpack 'embed-asset-directory
7286 (lambda* (#:key outputs #:allow-other-keys)
7287 (let ((assets (string-append (assoc-ref outputs "out")
7288 "/share/marble-marcher/assets/")))
7289 ;; Some of the files we're patching are
7290 ;; ISO-8859-1-encoded, so choose it as the default
7291 ;; encoding so the byte encoding is preserved.
7292 (with-fluids ((%default-port-encoding #f))
7293 (substitute* "src/Resource.rc"
7294 (("../assets/icon.ico")
7295 (string-append assets "icon.ico")))
7296 (substitute* "src/Res.h"
7297 (("assets/") assets))))
7298 #t))
7299 (replace 'install
7300 (lambda* (#:key outputs #:allow-other-keys)
7301 (let* ((out (assoc-ref outputs "out"))
7302 (assets (string-append out "/share/marble-marcher/assets"))
7303 (bin (string-append out "/bin/")))
7304 (mkdir-p bin)
7305 (mkdir-p assets)
7306 (copy-recursively "../source/assets" assets)
7307 (install-file "MarbleMarcher" bin))
7308 #t)))))
7309 (inputs
7310 `(("eigen" ,eigen)
7311 ("mesa" ,mesa)
7312 ("sfml" ,sfml)))
7313 (native-inputs
7314 `(("pkg-config" ,pkg-config)))
7315 (home-page "https://codeparade.itch.io/marblemarcher")
7316 (synopsis "Guide a marble across fractal landscapes")
7317 (description "Marble Marcher is a video game that uses a fractal physics
7318 engine and fully procedural rendering to produce beautiful and unique
7319 gameplay. The game is played on the surface of evolving fractals. The goal
7320 of the game is to get your marble to the flag as quickly as possible. But be
7321 careful not to fall off the level or get crushed by the fractal! There are 24
7322 levels to unlock.")
7323 ;; Code is under GPLv2+, assets are under CC-BY-SA 3.0 and OFL 1.1.
7324 (license (list license:gpl2+
7325 license:silofl1.1
7326 license:cc-by-sa3.0)))))
7327
7328 ;; This must be updated together with flightgear.
7329 (define simgear
7330 (package
7331 (name "simgear")
7332 (version "2018.3.2")
7333 (source (origin
7334 (method url-fetch)
7335 (uri (string-append "mirror://sourceforge/flightgear/release-"
7336 (version-major+minor version) "/"
7337 "simgear-" version ".tar.bz2"))
7338 (sha256
7339 (base32
7340 "1941ay8rngz4vwsx37bbpxr48hpcvcbj3xw1hy264lq4qnl99c68"))))
7341 (build-system cmake-build-system)
7342 (arguments
7343 `(#:phases
7344 (modify-phases %standard-phases
7345 (replace 'check
7346 (lambda _
7347 ;; Skip tests that require internet access.
7348 (invoke "ctest" "-E" "(http|dns)"))))))
7349 (inputs
7350 `(("boost" ,boost-for-mysql) ; fails with 1.69
7351 ("curl" ,curl)
7352 ("expat" ,expat)
7353 ("mesa" ,mesa)
7354 ("openal" ,openal)
7355 ("openscenegraph" ,openscenegraph-3.4)
7356 ("zlib" ,zlib)))
7357 (home-page "https://home.flightgear.org/")
7358 (synopsis "Libraries for 3D simulations and games")
7359 (description "SimGear is a set of libraries designed to be used as
7360 building blocks for quickly assembling 3D simulations, games, and
7361 visualization applications. SimGear is developed by the FlightGear project
7362 and also provides the base for the FlightGear Flight Simulator.")
7363 (license license:lgpl2.0+)))
7364
7365 (define-public flightgear
7366 (package
7367 (name "flightgear")
7368 (version (package-version simgear))
7369 (source (origin
7370 (method url-fetch)
7371 (uri (string-append "mirror://sourceforge/flightgear/release-"
7372 (version-major+minor version) "/"
7373 "flightgear-" version ".tar.bz2"))
7374 (sha256
7375 (base32
7376 "0lzy524cjzs8vldcjcc750bgg5c4mq9fkymxxxzqf68ilc4d1jss"))
7377 (modules '((guix build utils)))
7378 (snippet
7379 '(begin
7380 ;; There are some bundled libraries.
7381 (for-each delete-file-recursively
7382 '("3rdparty/sqlite3/"))
7383 #t))))
7384 (build-system cmake-build-system)
7385 (arguments
7386 `(#:configure-flags
7387 (list "-DSYSTEM_SQLITE=ON"
7388 (string-append "-DFG_DATA_DIR="
7389 (assoc-ref %outputs "out")
7390 "/share/flightgear"))
7391 ;; TODO: test cannot be run because the "run_test_suite" executable
7392 ;; does not seem to be built.
7393 #:tests? #f
7394 #:phases
7395 (modify-phases %standard-phases
7396 (add-after 'install 'wrap-executable
7397 (lambda* (#:key inputs outputs #:allow-other-keys)
7398 (let ((out (assoc-ref outputs "out")))
7399 (wrap-program (string-append out "/bin/fgfs")
7400 `("QT_PLUGIN_PATH" ":" prefix
7401 ,(map (lambda (label)
7402 (string-append (assoc-ref inputs label)
7403 "/lib/qt5/plugins"))
7404 '("qtbase" "qtdeclarative" "qtsvg")))
7405 `("QML2_IMPORT_PATH" ":" prefix
7406 ,(map (lambda (label)
7407 (string-append (assoc-ref inputs label)
7408 "/lib/qt5/qml"))
7409 '("qtdeclarative" "qtsvg"))))
7410 #t)))
7411 (add-after 'install 'install-data
7412 (lambda* (#:key inputs outputs #:allow-other-keys)
7413 (let ((share (string-append (assoc-ref outputs "out") "/share/flightgear")))
7414 (mkdir-p share)
7415 (with-directory-excursion share
7416 (invoke "tar" "xf" (assoc-ref inputs "flightgear-data")
7417 "--strip-components=1")))
7418 #t)))))
7419 (inputs
7420 `(("boost" ,boost-for-mysql) ; same as simgear
7421 ("dbus" ,dbus)
7422 ("eudev" ,eudev)
7423 ("freeglut" ,freeglut)
7424 ("freetype" ,freetype)
7425 ("glew" ,glew)
7426 ("libpng" ,libpng)
7427 ("openal" ,openal)
7428 ("openscenegraph" ,openscenegraph-3.4)
7429 ("plib" ,plib)
7430 ("qtbase" ,qtbase)
7431 ("qtdeclarative" ,qtdeclarative)
7432 ("qtsvg" ,qtsvg)
7433 ("simgear" ,simgear)
7434 ("speexdsp" ,speexdsp)
7435 ("sqlite" ,sqlite)
7436 ("zlib" ,zlib)))
7437 (native-inputs
7438 `(("cppunit" ,cppunit)
7439 ("pkg-config" ,pkg-config)
7440 ("qttools" ,qttools)
7441 ("flightgear-data"
7442 ,(origin
7443 (method url-fetch)
7444 (uri (string-append "mirror://sourceforge/flightgear/release-"
7445 (version-major+minor version) "/"
7446 "FlightGear-" version "-data.tar.bz2"))
7447 (sha256
7448 (base32
7449 "0h4npa7gqpf5fw6pv2bpw0wbwr7fa2vhia21cjbigfgd75x82zi7"))))))
7450 (home-page "https://home.flightgear.org/")
7451 (synopsis "Flight simulator")
7452 (description "The goal of the FlightGear project is to create a
7453 sophisticated flight simulator framework for use in research or academic
7454 environments, pilot training, as an industry engineering tool, for DIY-ers to
7455 pursue their favorite interesting flight simulation idea, and last but
7456 certainly not least as a fun, realistic, and challenging desktop flight
7457 simulator.")
7458 (license license:gpl2+)))
7459
7460 (define-public jumpnbump
7461 (package
7462 (name "jumpnbump")
7463 (version "1.61")
7464 (source (origin
7465 (method git-fetch)
7466 (uri (git-reference
7467 (url "https://gitlab.com/LibreGames/jumpnbump.git")
7468 (commit version)))
7469 (file-name (git-file-name name version))
7470 (sha256
7471 (base32
7472 "12lwl5sl5n009nb83r8l4lakb9286csqdf1ynpmwwydy17giqsdp"))))
7473 (build-system gnu-build-system)
7474 (arguments
7475 `(#:make-flags
7476 (list "CC=gcc"
7477 (string-append "PREFIX=" (assoc-ref %outputs "out")))
7478 #:tests? #f ;no test
7479 #:phases
7480 (modify-phases %standard-phases
7481 (delete 'configure) ;no configure script
7482 (add-after 'unpack 'fix-sdl-path
7483 ;; XXX: For some reason, `sdl2-config' reports stand-alone SDL
7484 ;; directory, not SDL-union provided as an input to the package.
7485 ;; We force the latter with "--prefix=" option.
7486 (lambda* (#:key inputs #:allow-other-keys)
7487 (substitute* "Makefile"
7488 (("sdl2-config" command)
7489 (string-append command " --prefix=" (assoc-ref inputs "sdl"))))
7490 #t)))))
7491 (inputs
7492 `(("bzip2" ,bzip2)
7493 ("sdl" ,(sdl-union (list sdl2 sdl2-mixer sdl2-net)))
7494 ("zlib" ,zlib)))
7495 (native-inputs
7496 `(("gettext" ,gettext-minimal))) ;for msgfmt
7497 (home-page "https://gitlab.com/LibreGames/jumpnbump")
7498 (synopsis "Multiplayer platform game with bunnies")
7499 (description "You, as a bunny, have to jump on your opponents to make them
7500 explode. It is a true multiplayer game; you cannot play this alone. You can
7501 play with up to four players simultaneously. It has network support.")
7502 (license license:gpl2+)))
7503
7504 (define-public hedgewars
7505 (package
7506 (name "hedgewars")
7507 (version "1.0.0")
7508 (source (origin
7509 (method url-fetch)
7510 (uri (string-append "https://www.hedgewars.org/download/releases/"
7511 "hedgewars-src-" version ".tar.bz2"))
7512 (sha256
7513 (base32
7514 "0nqm9w02m0xkndlsj6ys3wr0ik8zc14zgilq7k6fwjrf3zk385i1"))))
7515 (build-system cmake-build-system)
7516 (arguments
7517 ;; XXX: Engine is built as Pascal source code, requiring Free Pascal
7518 ;; Compiler, which we haven't packaged yet. With the flag below, we use
7519 ;; a Pascal to C translator and Clang instead.
7520 `(#:configure-flags (list "-DBUILD_ENGINE_C=ON")
7521 #:phases
7522 (modify-phases %standard-phases
7523 (replace 'check
7524 (lambda _ (invoke "ctest"))))))
7525 (inputs
7526 `(("ffmpeg" ,ffmpeg)
7527 ("freeglut" ,freeglut)
7528 ("ghc-entropy" ,ghc-entropy)
7529 ("ghc-hslogger" ,ghc-hslogger)
7530 ("ghc-network" ,ghc-network)
7531 ("ghc-random" ,ghc-random)
7532 ("ghc-regex-tdfa" ,ghc-regex-tdfa)
7533 ("ghc-sandi" ,ghc-sandi)
7534 ("ghc-sha" ,ghc-sha)
7535 ("ghc-utf8-string" ,ghc-utf8-string)
7536 ("ghc-vector" ,ghc-vector)
7537 ("ghc-zlib" ,ghc-zlib)
7538 ("glew" ,glew)
7539 ("libpng" ,libpng)
7540 ("lua" ,lua-5.1)
7541 ("physfs" ,physfs)
7542 ("qtbase" ,qtbase)
7543 ("sdl" ,(sdl-union
7544 (list sdl2 sdl2-mixer sdl2-net sdl2-ttf sdl2-image)))))
7545 (native-inputs
7546 `(("clang" ,clang)
7547 ("ghc" ,ghc)
7548 ("pkg-config" ,pkg-config)
7549 ("qttools" ,qttools)))
7550 (home-page "https://hedgewars.org/")
7551 (synopsis "Turn-based artillery game featuring fighting hedgehogs")
7552 (description
7553 "Hedgewars is a turn based strategy, artillery, action and comedy game,
7554 featuring the antics of pink hedgehogs with attitude as they battle from the
7555 depths of hell to the depths of space.
7556
7557 As commander, it's your job to assemble your crack team of hedgehog soldiers
7558 and bring the war to your enemy.")
7559 ;; Software as a whole is licensed under GPL-2 terms. Artwork and
7560 ;; scripts are distributed under various terms.
7561 (license (list license:gpl2
7562 license:bsd-2 license:bsd-3 license:cc-by3.0 license:cc0
7563 license:expat license:fdl1.3+ license:public-domain
7564 license:zlib))))
7565
7566 (define-public harmonist
7567 (package
7568 (name "harmonist")
7569 (version "0.3.0")
7570 (source (origin
7571 (method git-fetch)
7572 (uri (git-reference
7573 (url "https://git.tuxfamily.org/harmonist/harmonist.git")
7574 (commit (string-append "v" version))))
7575 (file-name (git-file-name name version))
7576 (sha256
7577 (base32
7578 "146wiyanag0zqj6fhyll2sw6sydnnll8mgxhhqf9sjqsl2rx4s5r"))))
7579 (build-system go-build-system)
7580 (arguments
7581 '(#:import-path "git.tuxfamily.org/harmonist/harmonist"))
7582 (inputs
7583 `(("go-github.com-nsf-termbox-go" ,go-github.com-nsf-termbox-go)))
7584 (home-page "https://harmonist.tuxfamily.org/")
7585 (synopsis "Stealth coffee-break roguelike game")
7586 (description "Harmonist: Dayoriah Clan Infiltration is a stealth
7587 coffee-break roguelike game. The game has a heavy focus on tactical
7588 positioning, light and noise mechanisms, making use of various terrain types
7589 and cones of view for monsters. Aiming for a replayable streamlined experience,
7590 the game avoids complex inventory management and character building, relying
7591 on items and player adaptability for character progression.")
7592 (license license:isc)))
7593
7594 (define-public harmonist-tk
7595 (package
7596 (inherit harmonist)
7597 (name "harmonist-tk")
7598 (arguments
7599 (append
7600 (package-arguments harmonist)
7601 `(#:phases
7602 (modify-phases %standard-phases
7603 (replace 'build
7604 (lambda _
7605 (invoke "go" "install" "-v" "-x" "--tags" "tk"
7606 "git.tuxfamily.org/harmonist/harmonist")))
7607 (replace 'check
7608 (lambda _
7609 (invoke "go" "test" "--tags" "tk"
7610 "git.tuxfamily.org/harmonist/harmonist")))))))
7611 (inputs
7612 `(("go-github.com-nsf-gothic" ,go-github.com-nsf-gothic)))))
7613
7614 (define-public drascula
7615 (package
7616 (name "drascula")
7617 (version "1.0")
7618 (source (origin
7619 (method url-fetch)
7620 (uri (string-append "mirror://sourceforge/scummvm/extras/"
7621 "Drascula_%20The%20Vampire%20Strikes%20Back/"
7622 "drascula-" version ".zip"))
7623 (sha256
7624 (base32
7625 "1pj29rpb754sn6a56f8brfv6f2m1p5qgaqik7d68pfi2bb5zccdp"))))
7626 (build-system trivial-build-system)
7627 (arguments
7628 `(#:modules ((guix build utils))
7629 #:builder
7630 (begin
7631 (use-modules (guix build utils)
7632 (ice-9 match))
7633 (let* ((out (assoc-ref %outputs "out"))
7634 (share (string-append out "/share/drascula"))
7635 (scummvm (assoc-ref %build-inputs "scummvm")))
7636 ;; Install data.
7637 (let ((unzip (string-append (assoc-ref %build-inputs "unzip")
7638 "/bin/unzip"))
7639 (doc (string-append out "/share/doc/" ,name "-" ,version)))
7640 (for-each
7641 (lambda (input)
7642 (invoke unzip
7643 "-j"
7644 (assoc-ref %build-inputs input)
7645 "-x" "__MACOSX")
7646 ;; Every input provides "readme.txt", and we want to
7647 ;; preserve them all. Therefore we rename them first.
7648 (match input
7649 ("drascula-int"
7650 (rename-file "readme.txt" "readme-international.txt"))
7651 ("drascula-audio"
7652 (rename-file "readme.txt" "readme-audio.txt"))
7653 (_ #f))
7654 ;; Install documentation.
7655 (for-each (lambda (f) (install-file f doc))
7656 (find-files "." "\\.(txt|doc)$"))
7657 ;; Install data.
7658 (for-each (lambda (f) (install-file f share))
7659 (find-files "." "\\.(ogg|00[0-9])$")))
7660 '("drascula-audio" "drascula-int" "source")))
7661 ;; Create standalone executable.
7662 (let* ((bin (string-append out "/bin"))
7663 (executable (string-append bin "/drascula"))
7664 (bash (string-append (assoc-ref %build-inputs "bash")
7665 "/bin/bash")))
7666 (mkdir-p bin)
7667 (with-output-to-file executable
7668 (lambda ()
7669 (format #t "#!~a~%" bash)
7670 (format #t
7671 "exec ~a/bin/scummvm --path=~a drascula~%"
7672 scummvm share)))
7673 (chmod executable #o755))
7674 ;; Create desktop file. There is no dedicated icon for the
7675 ;; game, so we borrow SCUMMVM's.
7676 (let ((apps (string-append out "/share/applications")))
7677 (mkdir-p apps)
7678 (with-output-to-file (string-append apps "/drascula.desktop")
7679 (lambda _
7680 (format #t
7681 "[Desktop Entry]~@
7682 Name=Drascula: The Vampire Strikes Back~@
7683 GenericName=Drascula~@
7684 Exec=~a/bin/drascula~@
7685 Icon=~a/share/icons/hicolor/scalable/apps/scummvm.svg~@
7686 Categories=AdventureGame;Game;RolePlaying;~@
7687 Keywords=game;adventure;roleplaying;2D,fantasy;~@
7688 Comment=Classic 2D point and click adventure game~@
7689 Comment[de]=klassisches 2D-Abenteuerspiel in Zeigen-und-Klicken-Manier~@
7690 Comment[fr]=Jeux classique d'aventure pointer-et-cliquer en 2D~@
7691 Comment[it]=Gioco classico di avventura punta e clicca 2D~@
7692 Type=Application~%"
7693 out scummvm))))
7694 #t))))
7695 (native-inputs
7696 `(("bash" ,bash)
7697 ("unzip" ,unzip)))
7698 (inputs
7699 `(("scummvm" ,scummvm)
7700 ("drascula-int"
7701 ,(let ((version "1.1"))
7702 (origin
7703 (method url-fetch)
7704 (uri (string-append "mirror://sourceforge/scummvm/extras/"
7705 "Drascula_%20The%20Vampire%20Strikes%20Back/"
7706 "drascula-int-" version ".zip"))
7707 (sha256
7708 (base32
7709 "12236i7blamal92p1i8dgp3nhp2yicics4whsl63v682bj999n14")))))
7710 ("drascula-audio"
7711 ,(let ((version "2.0"))
7712 (origin
7713 (method url-fetch)
7714 (uri (string-append "mirror://sourceforge/scummvm/extras/"
7715 "Drascula_%20The%20Vampire%20Strikes%20Back/"
7716 "drascula-audio-" version ".zip"))
7717 (sha256
7718 (base32
7719 "00g4izmsqzxb8ry1vhfx6jrygl58lvlij09nw01ds4zddsiznsky")))))))
7720 (home-page "https://www.scummvm.org")
7721 (synopsis "Classic 2D point and click adventure game")
7722 (description "Drascula: The Vampire Strikes Back is a classic humorous 2D
7723 point and click adventure game.
7724
7725 In Drascula you play the role of John Hacker, a British estate agent, that
7726 gets to meet a gorgeous blond girl who is kidnapped by the notorious vampire
7727 Count Drascula and embark on a fun yet dangerous quest to rescue her.
7728 Unfortunately, Hacker is not aware of Drascula's real ambitions: DOMINATING
7729 the World and demonstrating that he is even more evil than his brother Vlad.")
7730 ;; Drascula uses a BSD-like license.
7731 (license (license:non-copyleft "file:///readme.txt"))))
7732
7733 (define-public gnurobots
7734 (package
7735 (name "gnurobots")
7736 (version "1.2.0")
7737 (source
7738 (origin
7739 (method url-fetch)
7740 (uri (string-append "mirror://gnu/gnurobots/gnurobots-"
7741 version ".tar.gz"))
7742 (sha256
7743 (base32
7744 "07gi3lsmbzzsjambgixj6xy79lh22km84z7bnzgwzxdy806lyvwb"))))
7745 (build-system gnu-build-system)
7746 (inputs
7747 `(("glib" ,glib)
7748 ("gtk+" ,gtk+-2)
7749 ("vte" ,vte/gtk+-2)
7750 ("readline" ,readline)
7751 ("guile" ,guile-1.8)))
7752 (native-inputs
7753 `(("pkg-config" ,pkg-config)))
7754 (arguments
7755 `(#:make-flags
7756 (list
7757 ;; Do not abort build on "deprecated-declarations" warnings.
7758 "CFLAGS=-Wno-error=deprecated-declarations"
7759 ;; Find readline headers in sub-directory.
7760 (string-append "READLINE_CFLAGS=-I"
7761 (assoc-ref %build-inputs "readline")
7762 "/include/readline/"))
7763 #:phases
7764 (modify-phases %standard-phases
7765 (add-after 'install 'install-doc
7766 (lambda* (#:key outputs #:allow-other-keys)
7767 (install-file "doc/Robots-HOWTO"
7768 (string-append (assoc-ref outputs "out")
7769 "/share/doc/gnurobots-"
7770 ,version))
7771 #t)))))
7772 (home-page "https://www.gnu.org/software/gnurobots/")
7773 (synopsis "Program a little robot and watch it explore a world")
7774 (description
7775 "GNU Robots is a game in which you program a robot to explore a world
7776 full of enemies that can hurt it, obstacles and food to be eaten. The goal of
7777 the game is to stay alive and collect prizes. The robot program conveniently
7778 may be written in a plain text file in the Scheme programming language.")
7779 (license license:gpl3+)))
7780
7781 (define-public ri-li
7782 (package
7783 (name "ri-li")
7784 (version "2.0.1")
7785 (source (origin
7786 (method url-fetch)
7787 (uri (string-append "mirror://sourceforge/ri-li/"
7788 "Ri-li%20Linux_Unix/Ri-li%20V" version "/"
7789 "Ri-li-" version ".tar.bz2"))
7790 (sha256
7791 (base32
7792 "1gcdsgnnbbn1mb1hkpwniv3fhkaj1nn8gq33v5c16q3wqchcq77p"))
7793 ;; Taken from
7794 ;; <https://github.com/NixOS/nixpkgs/blob/master/pkgs/games/rili/moderinze_cpp.patch>.
7795 ;; It doesn't build otherwise.
7796 (patches (search-patches "ri-li-modernize_cpp.patch"))))
7797 (build-system gnu-build-system)
7798 (arguments
7799 `(#:phases
7800 (modify-phases %standard-phases
7801 ;; Remove "gentoo" subdirectory from Makefile, as it is
7802 ;; missing a make file and generates a build failure.
7803 (add-after 'configure 'fix-build
7804 (lambda _
7805 (substitute* "Makefile"
7806 ((" gentoo") ""))
7807 #t))
7808 (add-after 'install 'install-desktop-file
7809 (lambda* (#:key outputs #:allow-other-keys)
7810 (let* ((out (assoc-ref outputs "out"))
7811 (apps (string-append out "/share/applications"))
7812 (pixmaps (string-append out "/share/pixmaps")))
7813 (for-each (lambda (f) (install-file f pixmaps))
7814 (find-files "data" "\\.(png|ico)$"))
7815 (mkdir-p apps)
7816 (with-output-to-file (string-append apps "/ri-li.desktop")
7817 (lambda _
7818 (format #t
7819 "[Desktop Entry]~@
7820 Name=Ri-li~@
7821 Exec=~a/bin/Ri_li~@
7822 Icon=~a/Ri-li-icon-32x32.png~@
7823 Categories=Game;ArcadeGame;~@
7824 Keywords=toy;train;wooden;snake-like;engine;~@
7825 Comment=a toy simulator game~@
7826 Comment[de]=Ein Spiel mit einem kleinen Zug~@
7827 Comment[fr]=un jeu de petit train~@
7828 Comment[ro_RO]=un joc cu un tren de jucărie~@
7829 Terminal=false~@
7830 Type=Application~%"
7831 out pixmaps))))
7832 #t))
7833 (add-after 'install-desktop-file 'remove-spurious-files
7834 ;; Delete redundant files already installed somewhere else.
7835 (lambda* (#:key outputs #:allow-other-keys)
7836 (let ((out (assoc-ref outputs "out")))
7837 (for-each delete-file
7838 (find-files (string-append out "/share/Ri-li")
7839 "\\.(png|ico)|COPYING"))
7840 #t))))))
7841 (inputs
7842 `(("sdl" ,(sdl-union (list sdl sdl-mixer)))))
7843 (home-page "http://www.ri-li.org")
7844 (synopsis "Toy train simulation game")
7845 (description "Ri-li is a game in which you drive a wooden toy
7846 steam locomotive across many levels and collect all the coaches to
7847 win.")
7848 ;; The project is dual-licensed GPL2+ and GPL3+.
7849 (license (list license:gpl2+ license:gpl3+))))
7850
7851 (define-public freeorion
7852 (package
7853 (name "freeorion")
7854 (version "0.4.8")
7855 (source
7856 (origin
7857 (method git-fetch)
7858 (uri (git-reference
7859 (url "https://github.com/freeorion/freeorion.git")
7860 ;; Most recent stable release uses boost_signals (v1) which was
7861 ;; later replaced with boost-signals2 and no longer exists. This
7862 ;; commit builds and runs.
7863 ;;
7864 ;; TODO: Update this when the next stable release when it is
7865 ;; available.
7866 (commit "470d0711537804df3c2ca25532f674ab4bec58af")))
7867 (file-name (git-file-name name version))
7868 (sha256
7869 (base32
7870 "1wsw632l1cj17px6i88nqjzs0dngp5rsr67n6qkkjlfjfxi69j0f"))
7871 (modules '((guix build utils)))
7872 (snippet
7873 '(begin
7874 ;; There are some bundled fonts.
7875 (for-each delete-file-recursively '("default/data/fonts"))
7876 #t))))
7877 (build-system cmake-build-system)
7878 (arguments
7879 '(#:tests? #f ;no test
7880 #:phases
7881 (modify-phases %standard-phases
7882 (add-after 'unpack 'unbundle-fonts
7883 (lambda* (#:key inputs #:allow-other-keys)
7884 (let ((roboto-dir (string-append (assoc-ref inputs "font-roboto")
7885 "/share/fonts/truetype/")))
7886 (substitute* "UI/ClientUI.cpp"
7887 (("\\(GetRootDataDir.*?Roboto-(Bold|Regular)\\.ttf\"\\)\\.string\\(\\)\\);"
7888 all type)
7889 (string-append "\"" roboto-dir "Roboto-" type ".ttf\");")))
7890 #t))))))
7891 (inputs
7892 `(("boost" ,boost)
7893 ("boost_signals" ,boost-signals2)
7894 ("font-dejavu" ,font-dejavu)
7895 ("font-roboto" ,font-google-roboto)
7896 ("freetype2" ,freetype)
7897 ("glew" ,glew)
7898 ("glu" ,glu)
7899 ("libogg" ,libogg)
7900 ("libpng" ,libpng)
7901 ("libvorbis" ,libvorbis)
7902 ("openal" ,openal)
7903 ("python2" ,python-2.7)
7904 ("sdl2" ,sdl2)
7905 ("zlib" ,zlib)))
7906 (home-page "https://www.freeorion.org/index.php/Main_Page")
7907 (synopsis "Turn-based space empire and galactic conquest computer game")
7908 (description
7909 "FreeOrion is a turn-based space empire and galactic conquest (4X)
7910 computer game being designed and built by the FreeOrion project. Control an
7911 empire with the goal of exploring the galaxy, expanding your territory,
7912 exploiting the resources, and exterminating rival alien empires. FreeOrion is
7913 inspired by the tradition of the Master of Orion games, but is not a clone or
7914 remake of that series or any other game.")
7915 ;; Source code is released under gpl2. Artwork, music and sounds, and
7916 ;; in-game text are released under cc-by-sa3.0. Game content scripts are
7917 ;; released under both gpl2 and cc-by-sa3.0. Bundled Gigi library is
7918 ;; released under lgpl2.1+.
7919 (license (list license:gpl2 license:cc-by-sa3.0 license:lgpl2.1+))))
7920
7921 (define-public leela-zero
7922 (package
7923 (name "leela-zero")
7924 (version "0.17")
7925 (source
7926 (origin
7927 (method git-fetch)
7928 (uri (git-reference
7929 (url "https://github.com/leela-zero/leela-zero.git")
7930 (commit (string-append "v" version))))
7931 (file-name (git-file-name name version))
7932 (sha256
7933 (base32
7934 "17px5iny8mql5c01bymcli7zfssswkzvb2i8gnsmjcck6i2n8srl"))
7935 (patches (search-patches "leela-zero-gtest.patch"))))
7936 (build-system cmake-build-system)
7937 (native-inputs
7938 `(("googletest" ,googletest)))
7939 (inputs
7940 `(("boost" ,boost)
7941 ("ocl-icd" ,ocl-icd)
7942 ("openblas" ,openblas)
7943 ("opencl-headers" ,opencl-headers)
7944 ("qtbase" ,qtbase)
7945 ("zlib" ,zlib)))
7946 (arguments
7947 '(#:configure-flags '("-DUSE_BLAS=YES")
7948 #:phases (modify-phases %standard-phases
7949 (add-before 'configure 'fix-tests
7950 (lambda* (#:key outputs #:allow-other-keys)
7951 (let ((home (getcwd)))
7952 (setenv "HOME" home)
7953 (substitute* "src/tests/gtests.cpp"
7954 (("\\.\\./src/tests/0k\\.txt")
7955 (string-append home "/src/tests/0k.txt"))
7956 (("cfg_gtp_mode = true;")
7957 "cfg_gtp_mode = true; cfg_cpu_only = true;")))
7958 #t))
7959 (replace 'check
7960 (lambda _
7961 (invoke "./tests"))))))
7962 (home-page "https://github.com/leela-zero/leela-zero")
7963 (synopsis "Program playing the game of Go")
7964 (description
7965 "Leela-zero is a Go engine with no human-provided knowledge, modeled after
7966 the AlphaGo Zero paper. The current best network weights file for the engine
7967 can be downloaded from @url{https://zero.sjeng.org/best-network}.")
7968 (license license:gpl3+)))
7969
7970 (define-public q5go
7971 (package
7972 (name "q5go")
7973 (version "1.0")
7974 (source (origin
7975 (method git-fetch)
7976 (uri (git-reference
7977 (url "https://github.com/bernds/q5Go.git")
7978 (commit (string-append "q5go-" version))))
7979 (file-name (git-file-name name version))
7980 (sha256
7981 (base32
7982 "1gdlfqcqkqv7vph3qwq78d0qz6dhmdsranxq9bmixiisbzkqby31"))))
7983 (build-system gnu-build-system)
7984 (native-inputs
7985 `(("pkg-config" ,pkg-config)))
7986 (inputs
7987 `(("qtbase" ,qtbase)
7988 ("qtmultimedia" ,qtmultimedia)
7989 ("qtsvg" ,qtsvg)))
7990 (arguments
7991 '(#:phases
7992 (modify-phases %standard-phases
7993 (add-after 'unpack 'fix-configure-script
7994 (lambda _
7995 ;; Bypass the unavailable qtchooser program.
7996 (substitute* "configure"
7997 (("test -z \"QTCHOOSER\"")
7998 "false")
7999 (("qtchooser -run-tool=(.*) -qt=qt5" _ command)
8000 command))
8001 #t))
8002 (add-after 'unpack 'fix-paths
8003 (lambda _
8004 (substitute* '("src/pics/Makefile.in"
8005 "src/translations/Makefile.in")
8006 (("\\$\\(datadir\\)/qGo/")
8007 "$(datadir)/q5go/"))
8008 #t))
8009 (add-after 'install 'install-desktop-file
8010 (lambda* (#:key outputs #:allow-other-keys)
8011 (let* ((out (assoc-ref outputs "out"))
8012 (apps (string-append out "/share/applications"))
8013 (pics (string-append out "/share/q5go/pics")))
8014 (delete-file-recursively (string-append out "/share/applnk"))
8015 (delete-file-recursively (string-append out "/share/mimelnk"))
8016 (install-file "../source/src/pics/Bowl.ico" pics)
8017 (mkdir-p apps)
8018 (with-output-to-file (string-append apps "/q5go.desktop")
8019 (lambda _
8020 (format #t
8021 "[Desktop Entry]~@
8022 Name=q5go~@
8023 Exec=~a/bin/q5go~@
8024 Icon=~a/Bowl.ico~@
8025 Categories=Game;~@
8026 Comment=Game of Go~@
8027 Comment[de]=Spiel des Go~@
8028 Comment[eo]=Goo~@
8029 Comment[es]=Juego de Go~@
8030 Comment[fr]=Jeu de Go~@
8031 Comment[ja]=囲碁~@
8032 Comment[ko]=바둑~@
8033 Comment[zh]=围棋~@
8034 Terminal=false~@
8035 Type=Application~%"
8036 out pics))))
8037 #t)))))
8038 (synopsis "Qt GUI to play the game of Go")
8039 (description
8040 "This a tool for Go players which performs the following functions:
8041 @itemize
8042 @item SGF editor,
8043 @item Analysis frontend for Leela Zero (or compatible engines),
8044 @item GTP interface (to play against an engine),
8045 @item IGS client (to play on the internet),
8046 @item Export games to a variety of formats.
8047 @end itemize")
8048 (home-page "https://github.com/bernds/q5Go")
8049 (license license:gpl2+)))
8050
8051 (define-public ktuberling
8052 (package
8053 (name "ktuberling")
8054 (version "19.08.3")
8055 (source
8056 (origin
8057 (method url-fetch)
8058 (uri (string-append "mirror://kde/stable/applications/" version
8059 "/src/ktuberling-" version ".tar.xz"))
8060 (sha256
8061 (base32 "1qdf4q6wjh1lnlqw5c8z4rpj9w5vbyjfri1dah6yjm3mwppbc12j"))))
8062 (build-system qt-build-system)
8063 (native-inputs
8064 `(("extra-cmake-modules" ,extra-cmake-modules)
8065 ("perl" ,perl)))
8066 (inputs
8067 `(("kcompletion" ,kcompletion)
8068 ("kconfigwidgets" ,kconfigwidgets)
8069 ("kcoreaddons" ,kcoreaddons)
8070 ("kcrash" ,kcrash)
8071 ("kdbusaddons" ,kdbusaddons)
8072 ("kdelibs4support" ,kdelibs4support)
8073 ("ki18n" ,ki18n)
8074 ("kwidgetsaddons" ,kwidgetsaddons)
8075 ("kxmlgui" ,kxmlgui)
8076 ("libkdegames" ,libkdegames)
8077 ("qtbase" ,qtbase)
8078 ("qtmultimedia" ,qtmultimedia)
8079 ("qtdeclarative" ,qtdeclarative)
8080 ("qtsvg" ,qtsvg)))
8081 (home-page "https://games.kde.org/")
8082 (synopsis "Stamp drawing toy")
8083 (description "KTuberling is a drawing toy intended for small children and
8084 adults who remain young at heart. The game has no winner; the only purpose is
8085 to make the funniest faces you can. Several activites are possible, e.g.:
8086
8087 @itemize
8088 @item Give the potato a funny face, clothes, and other goodies
8089 @item Build a small town, complete with school, zoo, and fire department
8090 @item Create a fantastic moonscape with spaceships and aliens
8091 @item Top a pizza
8092 @end itemize
8093
8094 KTuberling can speak the name of each the object in several languages,
8095 to assist in learning basic vocabulary.
8096
8097 This package is part of the KDE games module.")
8098 (license (list license:gpl2+ license:fdl1.2+))))
8099
8100 (define-public picmi
8101 (package
8102 (name "picmi")
8103 (version "19.08.3")
8104 (source
8105 (origin
8106 (method url-fetch)
8107 (uri (string-append "mirror://kde/stable/applications/" version
8108 "/src/picmi-" version ".tar.xz"))
8109 (sha256
8110 (base32 "0z9mpmv49w914gqdx274brdzl6d1bz9j9nkvbwgmr3iq1ba49m3f"))))
8111 (build-system qt-build-system)
8112 (native-inputs
8113 `(("extra-cmake-modules" ,extra-cmake-modules)
8114 ("kdoctools" ,kdoctools)))
8115 (inputs
8116 `(("kcoreaddons" ,kcoreaddons)
8117 ("kcrash" ,kcrash)
8118 ("kdbusaddons" ,kdbusaddons)
8119 ("kdeclarative" ,kdeclarative)
8120 ("ki18n" ,ki18n)
8121 ("kio" ,kio)
8122 ("knewstuff" ,knewstuff)
8123 ("kxmlgui" ,kxmlgui)
8124 ("libkdegames" ,libkdegames)
8125 ("qtbase" ,qtbase)
8126 ("qtdeclarative" ,qtdeclarative)
8127 ("qtsvg" ,qtsvg)))
8128 (home-page "https://games.kde.org/")
8129 (synopsis "Number logic game")
8130 (description "Picmi is a number logic game in which cells in a grid have
8131 to be colored or left blank according to numbers given at the side of the
8132 grid. The aim is to reveal a hidden picture.
8133
8134 This package is part of the KDE games module.")
8135 (license (list license:gpl2+ license:fdl1.2+))))
8136
8137 (define-public kolf
8138 (package
8139 (name "kolf")
8140 (version "19.08.3")
8141 (source
8142 (origin
8143 (method url-fetch)
8144 (uri (string-append "mirror://kde/stable/applications/" version
8145 "/src/kolf-" version ".tar.xz"))
8146 (sha256
8147 (base32 "06sfd0llr5cc3zf1vrpcxgw9bm009ky7y8822kynic9ipcd4z1hw"))))
8148 (build-system qt-build-system)
8149 (native-inputs
8150 `(("extra-cmake-modules" ,extra-cmake-modules)
8151 ("kdoctools" ,kdoctools)))
8152 (inputs
8153 `(("kcompletion" ,kcompletion)
8154 ("kconfigwidgets" ,kconfigwidgets)
8155 ("kcoreaddons" ,kcoreaddons)
8156 ("kcrash" ,kcrash)
8157 ("kdbusaddons" ,kdbusaddons)
8158 ("ki18n" ,ki18n)
8159 ("kio" ,kio)
8160 ("kwidgetsaddons" ,kwidgetsaddons)
8161 ("kxmlgui" ,kxmlgui)
8162 ("ktextwidgets" ,ktextwidgets)
8163 ("libkdegames" ,libkdegames)
8164 ("qtbase" ,qtbase)
8165 ("qtdeclarative" ,qtdeclarative)))
8166 (home-page "https://games.kde.org/")
8167 (synopsis "Miniature golf game")
8168 (description "Kolf is a miniature golf game for one to ten players. The
8169 game is played from an overhead view, with a short bar representing the golf
8170 club. Kolf features many different types of objects, such as water hazards,
8171 slopes, sand traps, and black holes (warps), among others.
8172
8173 Features are:
8174 @itemize
8175 @item Single and Multi-player (up to ten players) modes
8176 @item High scores table
8177 @item Dynamic courses
8178 @item Third-party courses
8179 @item Course editor
8180 @end itemize
8181
8182 This package is part of the KDE games module.")
8183 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
8184
8185 (define-public libkmahjongg
8186 (package
8187 (name "libkmahjongg")
8188 (version "19.08.3")
8189 (source
8190 (origin
8191 (method url-fetch)
8192 (uri (string-append "mirror://kde/stable/applications/"
8193 version "/src/libkmahjongg-" version ".tar.xz"))
8194 (sha256
8195 (base32 "0rdimk11hrc8qrmiv26z0ddjzi1k6806c0rfskx4cwmildmh6zgx"))))
8196 (build-system qt-build-system)
8197 (native-inputs
8198 `(("extra-cmake-modules" ,extra-cmake-modules)))
8199 (inputs
8200 `(("kauth" ,kauth)
8201 ("kcompletion" ,kcompletion)
8202 ;("kconfig" ,kconfig)
8203 ("kcodecs" ,kcodecs)
8204 ("kconfigwidgets" ,kconfigwidgets)
8205 ("kcoreaddons" ,kcoreaddons)
8206 ("ki18n" ,ki18n)
8207 ("kwidgetsaddons" ,kwidgetsaddons)
8208 ("qtbase" ,qtbase)
8209 ("qtsvg" ,qtsvg)))
8210 (home-page "https://games.kde.org/")
8211 (synopsis "Shared library for kmahjongg and kshisen")
8212 (description "Shared library and common files for kmahjongg, kshisen and
8213 other Mah Jongg like games.")
8214 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
8215
8216 (define-public kmahjongg
8217 (package
8218 (name "kmahjongg")
8219 (version "19.08.3")
8220 (source
8221 (origin
8222 (method url-fetch)
8223 (uri (string-append "mirror://kde/stable/applications/"
8224 version "/src/kmahjongg-" version ".tar.xz"))
8225 (sha256
8226 (base32 "08na845h0nhmfrszdmvfq5y1dy7kgbrlzjp0f5snvbbf7w44ci6p"))))
8227 (build-system qt-build-system)
8228 (native-inputs
8229 `(("extra-cmake-modules" ,extra-cmake-modules)
8230 ("kdoctools" ,kdoctools)))
8231 (inputs
8232 `(("kcompletion" ,kcompletion)
8233 ("kcrash" ,kcrash)
8234 ("kdbusaddons" ,kdbusaddons)
8235 ("kdeclarative" ,kdeclarative)
8236 ("ki18n" ,ki18n)
8237 ("knewstuff" ,knewstuff)
8238 ("kxmlgui" ,kxmlgui)
8239 ("libkdegames" ,libkdegames)
8240 ("libkmahjongg" ,libkmahjongg)
8241 ("qtbase" ,qtbase)
8242 ("qtdeclarative" ,qtdeclarative)
8243 ("qtsvg" ,qtsvg)))
8244 (home-page "https://games.kde.org/")
8245 (synopsis "Tile laying patience")
8246 (description "In KMahjongg the tiles are scrambled and staked on top of
8247 each other to resemble a certain shape. The player is then expected to remove
8248 all the tiles off the game board by locating each tile's matching pair.
8249
8250 A variety of tile layouts are included, as well as an editor to create new
8251 layouts.
8252
8253 This package is part of the KDE games module.")
8254 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
8255
8256 (define-public kshisen
8257 (package
8258 (name "kshisen")
8259 (version "19.08.3")
8260 (source
8261 (origin
8262 (method url-fetch)
8263 (uri (string-append "mirror://kde/stable/applications/"
8264 version "/src/kshisen-" version ".tar.xz"))
8265 (sha256
8266 (base32 "1bq5m48af4h5apfp3bfsp76nlpv6h5sc0gd544zv7cgpfznz1sds"))))
8267 (build-system qt-build-system)
8268 (native-inputs
8269 `(("extra-cmake-modules" ,extra-cmake-modules)
8270 ;("perl" ,perl)
8271 ;("pkg-config" ,pkg-config)
8272 ("kdoctools" ,kdoctools)))
8273 (inputs
8274 `(("kauth" ,kauth)
8275 ("kcompletion" ,kcompletion)
8276 ("kconfigwidgets" ,kconfigwidgets)
8277 ("kcoreaddons" ,kcoreaddons)
8278 ("kcrash" ,kcrash)
8279 ("kdbusaddons" ,kdbusaddons)
8280 ("ki18n" ,ki18n)
8281 ("kxmlgui" ,kxmlgui)
8282 ("libkdegames" ,libkdegames)
8283 ("libkmahjongg" ,libkmahjongg)
8284 ("qtbase" ,qtbase)
8285 ("qtdeclarative" ,qtdeclarative)))
8286 (home-page "https://games.kde.org/")
8287 (synopsis "Shisen-Sho solitaire game")
8288 (description "KShisen is a solitaire-like game played using the standard
8289 set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of
8290 scrambled tiles
8291
8292 This package is part of the KDE games module.")
8293 (license license:gpl2+)))
8294
8295 (define-public kajongg
8296 (package
8297 (name "kajongg")
8298 (version "19.08.3")
8299 (source
8300 (origin
8301 (method url-fetch)
8302 (uri (string-append "mirror://kde/stable/applications/"
8303 version "/src/kajongg-" version ".tar.xz"))
8304 (sha256
8305 (base32 "0ql6p5zifdpdf65r7ki9ml123azpwwk9x3x8r9ij6xhjnf7p7x6w"))))
8306 (build-system qt-build-system)
8307 (native-inputs
8308 `(("extra-cmake-modules" ,extra-cmake-modules)
8309 ;("perl" ,perl)
8310 ("kdoctools" ,kdoctools)))
8311 (inputs
8312 `(("kconfig" ,kconfig)
8313 ("kconfigwidgets" ,kconfigwidgets)
8314 ("kcoreaddons" ,kcoreaddons)
8315 ("ki18n" ,ki18n)
8316 ("libkmahjongg" ,libkmahjongg)
8317 ("python" ,python)
8318 ("qtbase" ,qtbase)
8319 ("qtsvg" ,qtsvg)))
8320 (propagated-inputs
8321 `(("python-twisted" ,python-twisted)
8322 ("python-pyqt" ,python-pyqt)))
8323 ;; FIXME: Need to wrap PYTHONPATH
8324 (home-page "https://games.kde.org/")
8325 (synopsis "Classical Mah Jongg game for 4 players")
8326 (description "Kajongg is the ancient Chinese board game for 4 players.
8327
8328 If you are looking for the Mah Jongg solitaire please use the application
8329 kmahjongg.
8330
8331 Kajongg can be used in two different ways: Scoring a manual game where you
8332 play as always and use Kajongg for the computation of scores and for
8333 bookkeeping. Or you can use Kajongg to play against any combination of other
8334 human players or computer players.
8335
8336 This package is part of the KDE games module.")
8337 (license (list license:gpl2+ license:fdl1.2+))))
8338
8339 (define-public kbreakout
8340 (package
8341 (name "kbreakout")
8342 (version "19.08.3")
8343 (source
8344 (origin
8345 (method url-fetch)
8346 (uri (string-append "mirror://kde/stable/applications/" version
8347 "/src/kbreakout-" version ".tar.xz"))
8348 (sha256
8349 (base32 "0gwzx1z9mxrjlcjzglg8cxkyd6900whcar3b5j9laxxarc6xhj8w"))))
8350 (build-system qt-build-system)
8351 (native-inputs
8352 `(("extra-cmake-modules" ,extra-cmake-modules)
8353 ("kdoctools" ,kdoctools)))
8354 (inputs
8355 `(("kcompletion" ,kcompletion)
8356 ("kconfig" ,kconfig)
8357 ("kconfigwidgets" ,kconfigwidgets)
8358 ("kcoreaddons" ,kcoreaddons)
8359 ("kcrash" ,kcrash)
8360 ("kdbusaddons" ,kdbusaddons)
8361 ("ki18n" ,ki18n)
8362 ("kwidgetsaddons" ,kwidgetsaddons)
8363 ("kxmlgui" ,kxmlgui)
8364 ("libkdegames" ,libkdegames)
8365 ("qtbase" ,qtbase)
8366 ("qtdeclarative" ,qtdeclarative)))
8367 (home-page "https://games.kde.org/")
8368 (synopsis "Breakout like game")
8369 (description "KBreakout is similar to the classics breakout and xboing,
8370 featuring a number of added graphical enhancements and effects. You control a
8371 paddle at the bottom of the playing-field, and must destroy bricks at the top
8372 by bouncing balls against them.
8373
8374 This package is part of the KDE games module.")
8375 (license (list license:gpl2+ license:fdl1.2+))))
8376
8377 (define-public kmines
8378 (package
8379 (name "kmines")
8380 (version "19.08.3")
8381 (source
8382 (origin
8383 (method url-fetch)
8384 (uri (string-append "mirror://kde/stable/applications/" version
8385 "/src/kmines-" version ".tar.xz"))
8386 (sha256
8387 (base32 "0ac3za36lh8hpx6mqfic9amwmzhzhzplm9hg3pw12gxl5a9mvfsf"))))
8388 (build-system qt-build-system)
8389 (native-inputs
8390 `(("extra-cmake-modules" ,extra-cmake-modules)
8391 ("kdoctools" ,kdoctools)))
8392 (inputs
8393 `(("kcompletion" ,kcompletion)
8394 ("kconfig" ,kconfig)
8395 ("kconfigwidgets" ,kconfigwidgets)
8396 ("kcoreaddons" ,kcoreaddons)
8397 ("kcrash" ,kcrash)
8398 ("kdbusaddons" ,kdbusaddons)
8399 ("ki18n" ,ki18n)
8400 ("ktextwidgets" ,ktextwidgets)
8401 ("kwidgetsaddons" ,kwidgetsaddons)
8402 ("kxmlgui" ,kxmlgui)
8403 ("libkdegames" ,libkdegames)
8404 ("qtbase" ,qtbase)
8405 ("qtdeclarative" ,qtdeclarative)))
8406 (home-page "https://games.kde.org/")
8407 (synopsis "Classical mine sweeper game")
8408 (description "KMines is a classic Minesweeper game. The idea is to
8409 uncover all the squares without blowing up any mines. When a mine is blown
8410 up, the game is over.
8411
8412 This package is part of the KDE games module.")
8413 (license (list license:gpl2+ license:fdl1.2+))))
8414
8415 (define-public konquest
8416 (package
8417 (name "konquest")
8418 (version "19.08.3")
8419 (source
8420 (origin
8421 (method url-fetch)
8422 (uri (string-append "mirror://kde/stable/applications/"
8423 version "/src/konquest-" version ".tar.xz"))
8424 (sha256
8425 (base32 "02gjxskhi10a1sqh3skcild8zria7wncz1a4sbz7ax1p851q76k1"))))
8426 (build-system qt-build-system)
8427 (native-inputs
8428 `(("extra-cmake-modules" ,extra-cmake-modules)
8429 ("kdoctools" ,kdoctools)))
8430 (inputs
8431 `(("kcompletion" ,kcompletion)
8432 ("kconfig" ,kconfig)
8433 ("kcoreaddons" ,kcoreaddons)
8434 ("kcrash" ,kcrash)
8435 ("kdbusaddons" ,kdbusaddons)
8436 ("kguiaddons" ,kguiaddons)
8437 ("ki18n" ,ki18n)
8438 ("kwidgetsaddons" ,kwidgetsaddons)
8439 ("kxmlgui" ,kxmlgui)
8440 ("libkdegames" ,libkdegames)
8441 ("qtbase" ,qtbase)
8442 ("qtdeclarative" ,qtdeclarative)
8443 ("qtsvg" ,qtsvg)))
8444 (home-page "https://games.kde.org/")
8445 (synopsis "Simple turn-based strategy game")
8446 (description "Konquest is the KDE version of Gnu-Lactic Konquest. Players
8447 conquer other planets by sending ships to them. The goal is to build an
8448 interstellar empire and ultimately conquer all other player's planets. The
8449 game can be played with up to nine empires, commanded either by the computer
8450 or by puny earthlings.
8451
8452 This package is part of the KDE games module.")
8453 (license (list license:gpl2+ license:fdl1.2+))))
8454
8455 (define-public kbounce
8456 (package
8457 (name "kbounce")
8458 (version "19.08.3")
8459 (source
8460 (origin
8461 (method url-fetch)
8462 (uri (string-append "mirror://kde/stable/applications/"
8463 version "/src/kbounce-" version ".tar.xz"))
8464 (sha256
8465 (base32 "02rfv0qzz5cmyfx8f56a45hbm9gsp6m3dcy8ajwx88rw5wpbrr11"))))
8466 (build-system qt-build-system)
8467 (native-inputs
8468 `(("extra-cmake-modules" ,extra-cmake-modules)
8469 ("kdoctools" ,kdoctools)))
8470 (inputs
8471 `(("kcompletion" ,kcompletion)
8472 ("kconfigwidgets" ,kconfigwidgets)
8473 ("kcoreaddons" ,kcoreaddons)
8474 ("kcrash" ,kcrash)
8475 ("kdbusaddons" ,kdbusaddons)
8476 ("ki18n" ,ki18n)
8477 ("kio" ,kio)
8478 ("kwidgetsaddons" ,kwidgetsaddons)
8479 ("kxmlgui" ,kxmlgui)
8480 ("libkdegames" ,libkdegames)
8481 ("qtbase" ,qtbase)
8482 ("qtdeclarative" ,qtdeclarative)
8483 ("qtsvg" ,qtsvg)))
8484 (home-page "https://games.kde.org/")
8485 (synopsis "Jezzball arcade game")
8486 (description "KBounce is a single player arcade game with the elements of
8487 puzzle. It is played on a field, surrounded by wall, with two or more balls
8488 bouncing around within the walls. The object of the game is to build new
8489 walls to decrease the size of the active field.
8490
8491 This package is part of the KDE games module.")
8492 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
8493
8494 (define-public kblocks
8495 (package
8496 (name "kblocks")
8497 (version "19.08.3")
8498 (source
8499 (origin
8500 (method url-fetch)
8501 (uri (string-append "mirror://kde/stable/applications/"
8502 version "/src/kblocks-" version ".tar.xz"))
8503 (sha256
8504 (base32 "0qrm0dihzhkxsq9l49ndzms802x6jn92vvabb2zf2q9z593m69cx"))))
8505 (build-system qt-build-system)
8506 (native-inputs
8507 `(("extra-cmake-modules" ,extra-cmake-modules)
8508 ("kdoctools" ,kdoctools)))
8509 (inputs
8510 `(("kcompletion" ,kcompletion)
8511 ("kconfig" ,kconfig)
8512 ("kconfigwidgets" ,kconfigwidgets)
8513 ("kcoreaddons" ,kcoreaddons)
8514 ("kcrash" ,kcrash)
8515 ("kdbusaddons" ,kdbusaddons)
8516 ("ki18n" ,ki18n)
8517 ("kwidgetsaddons" ,kwidgetsaddons)
8518 ("kxmlgui" ,kxmlgui)
8519 ("libkdegames" ,libkdegames)
8520 ("qtbase" ,qtbase)
8521 ("qtdeclarative" ,qtdeclarative)
8522 ("qtsvg" ,qtsvg)))
8523 (home-page "https://games.kde.org/")
8524 (synopsis "Single player falling blocks puzzle game")
8525 (description "KBlocks is the classic Tetris-like falling blocks game.
8526
8527 The idea is to stack the falling blocks to create horizontal lines without any
8528 gaps. When a line is completed it is removed, and more space is available in
8529 the play area. When there is not enough space for blocks to fall, the game is
8530 over.
8531
8532 This package is part of the KDE games module.")
8533 (license (list license:gpl2+ license:fdl1.2+))))
8534
8535 (define-public ksudoku
8536 (package
8537 (name "ksudoku")
8538 (version "19.08.3")
8539 (source
8540 (origin
8541 (method url-fetch)
8542 (uri (string-append "mirror://kde/stable/applications/"
8543 version "/src/ksudoku-" version ".tar.xz"))
8544 (sha256
8545 (base32 "0rcscz91hilm7l3am5w02n0n8l7xhi4l0n4sskznh68kblw0ggw2"))))
8546 (build-system qt-build-system)
8547 (native-inputs
8548 `(("extra-cmake-modules" ,extra-cmake-modules)
8549 ("kdoctools" ,kdoctools)))
8550 (inputs
8551 `(("karchive", karchive)
8552 ("kconfig" ,kconfig)
8553 ("kconfigwidgets" ,kconfigwidgets)
8554 ("kcoreaddons" ,kcoreaddons)
8555 ("kcrash" ,kcrash)
8556 ("kguiaddons" ,kguiaddons)
8557 ("ki18n" ,ki18n)
8558 ("kiconthemes" ,kiconthemes)
8559 ("kio" ,kio)
8560 ("kwidgetsaddons" ,kwidgetsaddons)
8561 ("kxmlgui" ,kxmlgui)
8562 ("libkdegames" ,libkdegames)
8563 ("glu" ,glu)
8564 ("qtbase" ,qtbase)
8565 ("qtdeclarative" ,qtdeclarative)
8566 ("qtsvg" ,qtsvg)))
8567 (home-page "https://games.kde.org/")
8568 (synopsis "Sudoku puzzle game and solver")
8569 (description "KSudoku is a Sudoku game and solver, supporting a range of
8570 2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku
8571 puzzle sheets and find the solution to any Sudoku puzzle.
8572
8573 The word Sudoku means \"single number in an allotted place\" in Japanese.
8574 These are the basic rules: Every Sudoku is a square divided into 3x3
8575 subsquares with 3x3 cells each.
8576
8577 Some cells are filled with a number at the beginning. The remaining ones are
8578 to be filled by the player using numbers from 1 to 9, without repeating a
8579 number twice on each column, row or subsquare (each of them must contain only
8580 one 1, one 2, one 3, and so on). The game requires logic and patience.
8581 Solving takes usually 10 to 30 minutes, depending on puzzle level, your skill
8582 and experience.
8583
8584 The numerals in Sudoku puzzles are used for convenience (for example in 16x16
8585 board we use letters): arithmetic relationships between numbers are
8586 irrelevant.
8587
8588 This program supports also 16x16 games with numbers from 1 to 16 and 256
8589 cells with 16 cols, rows and subsquares!
8590
8591 More information at http://en.wikipedia.org/wiki/Sudoku
8592
8593 This package is part of the KDE games module.")
8594 (license (list license:gpl2+ license:fdl1.2+))))
8595
8596 (define-public klines
8597 (package
8598 (name "klines")
8599 (version "19.08.3")
8600 (source
8601 (origin
8602 (method url-fetch)
8603 (uri (string-append "mirror://kde/stable/applications/" version
8604 "/src/klines-" version ".tar.xz"))
8605 (sha256
8606 (base32 "1g1f46jp0rb8gpqkgcf915ydpsscn1sxk3gjvm8bcqgx9ddq59xa"))))
8607 (build-system qt-build-system)
8608 (native-inputs
8609 `(("extra-cmake-modules" ,extra-cmake-modules)
8610 ("kdoctools" ,kdoctools)))
8611 (inputs
8612 `(("kcompletion" ,kcompletion)
8613 ("kconfigwidgets" ,kconfigwidgets)
8614 ("kcoreaddons" ,kcoreaddons)
8615 ("kcrash" ,kcrash)
8616 ("kdbusaddons" ,kdbusaddons)
8617 ("ki18n" ,ki18n)
8618 ("kwidgetsaddons" ,kwidgetsaddons)
8619 ("kxmlgui" ,kxmlgui)
8620 ("libkdegames" ,libkdegames)
8621 ("qtbase" ,qtbase)
8622 ("qtdeclarative" ,qtdeclarative)))
8623 (home-page "https://games.kde.org/")
8624 (synopsis "Place 5 equal pieces together, but wait, there are 3 new ones")
8625 (description "KLines is a simple but highly addictive one player game.
8626
8627 The player has to move the colored balls around the game board, gathering them
8628 into the lines of the same color by five. Once the line is complete it is
8629 removed from the board, therefore freeing precious space. In the same time
8630 the new balls keep arriving by three after each move, filling up the game
8631 board.
8632
8633 KLines is a single-player game where the player removes colored balls from the
8634 board by arranging them into lines of five or more. However, every time the
8635 player moves a ball, three more balls are added to the board.
8636
8637 This package is part of the KDE games module.")
8638 (license (list license:gpl2+ license:fdl1.2+))))
8639
8640 (define-public kgoldrunner
8641 (package
8642 (name "kgoldrunner")
8643 (version "19.08.3")
8644 (source
8645 (origin
8646 (method url-fetch)
8647 (uri (string-append "mirror://kde/stable/applications/" version "/src/kgoldrunner-"
8648 version ".tar.xz"))
8649 (sha256
8650 (base32 "16rcvq796r3asz4v4ap75xvwnxd3dd2nsq5r9vxvzl6rrf1w9bj4"))))
8651 (build-system qt-build-system)
8652 (native-inputs
8653 `(("extra-cmake-modules" ,extra-cmake-modules)
8654 ("kdoctools" ,kdoctools)))
8655 (inputs
8656 `(("kcompletion" ,kcompletion)
8657 ("kcoreaddons" ,kcoreaddons)
8658 ("kcrash" ,kcrash)
8659 ("kdbusaddons" ,kdbusaddons)
8660 ("ki18n" ,ki18n)
8661 ("kio" ,kio)
8662 ("kwidgetsaddons" ,kwidgetsaddons)
8663 ("kxmlgui" ,kxmlgui)
8664 ("libkdegames" ,libkdegames)
8665 ("qtbase" ,qtbase)
8666 ("qtdeclarative" ,qtdeclarative)))
8667 (home-page "https://games.kde.org/")
8668 (synopsis "Action and puzzle solving game")
8669 (description "KGoldrunner is an action game where the hero runs through a
8670 maze, climbs stairs, dig holes and dodges enemies in order to collect all the
8671 gold nuggets and escape to the next level. Your enemies are also after the
8672 gold. Worse still, they are after you!.
8673
8674 KGoldrunner is a fast-paced platform game where the player must navigate a
8675 maze while collecting gold nuggets and avoiding enemies. A variety of level
8676 packs are included, as well as an editor to create new levels.
8677
8678 This package is part of the KDE games module.")
8679 (license (list license:gpl2+ license:fdl1.2+))))
8680
8681 (define-public kdiamond
8682 (package
8683 (name "kdiamond")
8684 (version "19.08.3")
8685 (source
8686 (origin
8687 (method url-fetch)
8688 (uri (string-append "mirror://kde/stable/applications/" version
8689 "/src/kdiamond-" version ".tar.xz"))
8690 (sha256
8691 (base32 "1v5yb9hb26lk277zhw8d37ks829yfqr5anzx1qhms44gca5kqhva"))))
8692 (build-system qt-build-system)
8693 (native-inputs
8694 `(("extra-cmake-modules" ,extra-cmake-modules)
8695 ("kdoctools" ,kdoctools)))
8696 (inputs
8697 `(("kcompletion", kcompletion)
8698 ("kconfig" ,kconfig)
8699 ("kconfigwidgets" ,kconfigwidgets)
8700 ("kcoreaddons" ,kcoreaddons)
8701 ("kcrash" ,kcrash)
8702 ("kdbusaddons" ,kdbusaddons)
8703 ("ki18n" ,ki18n)
8704 ("knotifications" ,knotifications)
8705 ("knotifyconfig" ,knotifyconfig)
8706 ("kwidgetsaddons" ,kwidgetsaddons)
8707 ("kxmlgui" ,kxmlgui)
8708 ("libkdegames" ,libkdegames)
8709 ("qtbase" ,qtbase)
8710 ("qtdeclarative" ,qtdeclarative)))
8711 (home-page "https://games.kde.org/")
8712 (synopsis "Three-in-a-row game")
8713 (description "KDiamond is a three-in-a-row game like Bejeweled. It
8714 features unlimited fun with randomly generated games and five difficulty
8715 levels with varying number of diamond colors and board sizes.
8716
8717 This package is part of the KDE games module.")
8718 (license (list license:gpl2+ license:fdl1.2+))))
8719
8720 (define-public kfourinline
8721 (package
8722 (name "kfourinline")
8723 (version "19.08.3")
8724 (source
8725 (origin
8726 (method url-fetch)
8727 (uri (string-append "mirror://kde/stable/applications/" version
8728 "/src/kfourinline-" version ".tar.xz"))
8729 (sha256
8730 (base32 "1vprs6dc1ccn3g6k594i9s94xy4b91vzlqjysyc6fqcq2fs54ny3"))))
8731 (build-system qt-build-system)
8732 (native-inputs
8733 `(("extra-cmake-modules" ,extra-cmake-modules)
8734 ("kdoctools" ,kdoctools)))
8735 (inputs
8736 `(("kcompletion" ,kcompletion)
8737 ("kconfig" ,kconfig)
8738 ("kconfigwidgets" ,kconfigwidgets)
8739 ("kcoreaddons" ,kcoreaddons)
8740 ("kcrash" ,kcrash)
8741 ("kdelibs4support" ,kdelibs4support)
8742 ("kdnssd" ,kdnssd)
8743 ("ki18n" ,ki18n)
8744 ("kxmlgui" ,kxmlgui)
8745 ("libkdegames" ,libkdegames)
8746 ("qtbase" ,qtbase)
8747 ("qtdeclarative" ,qtdeclarative)
8748 ("qtsvg" ,qtsvg)))
8749 (home-page "https://games.kde.org/")
8750 (synopsis "Place 4 pieces in a row")
8751 (description "KFourInLine is a board game for two players based on the
8752 Connect-Four game.
8753
8754 KFourInLine is a game where two players take turns dropping pieces into a
8755 grid, the winner being the first to place four pieces in a line.
8756
8757 This package is part of the KDE games module.")
8758 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
8759
8760 (define-public kblackbox
8761 (package
8762 (name "kblackbox")
8763 (version "19.08.3")
8764 (source
8765 (origin
8766 (method url-fetch)
8767 (uri (string-append "mirror://kde/stable/applications/" version
8768 "/src/kblackbox-" version ".tar.xz"))
8769 (sha256
8770 (base32 "1x42sfpf75c6mavwkc7g7dm11y9s5dpj8igphly5kvm0pajqby0n"))))
8771 (build-system qt-build-system)
8772 (native-inputs
8773 `(("extra-cmake-modules" ,extra-cmake-modules)
8774 ("kdoctools" ,kdoctools)))
8775 (inputs
8776 `(("karchive" ,karchive)
8777 ("kcompletion" ,kcompletion)
8778 ("kconfig" ,kconfig)
8779 ("kcoreaddons" ,kcoreaddons)
8780 ("kcrash" ,kcrash)
8781 ("kdbusaddons" ,kdbusaddons)
8782 ("ki18n" ,ki18n)
8783 ("ktextwidgets" ,ktextwidgets)
8784 ("kxmlgui" ,kxmlgui)
8785 ("libkdegames" ,libkdegames)
8786 ("qtbase" ,qtbase)
8787 ("qtdeclarative" ,qtdeclarative)
8788 ("qtsvg" ,qtsvg)))
8789 (home-page "https://games.kde.org/")
8790 (synopsis "Find atoms in a grid by shooting electrons")
8791 (description "KBlackbox is a game of hide and seek played on a grid of
8792 boxes where the computer has hidden several balls. The position of the hidden
8793 balls can be deduced by shooting beams into the box
8794
8795 KBlackBox is a game of hide and seek played on an grid of boxes, where the
8796 player shoots rays into the grid to deduce the positions of hidden objects.
8797
8798 This package is part of the KDE games module.")
8799 (license (list license:gpl2+ license:fdl1.2+))))
8800
8801 (define-public knetwalk
8802 (package
8803 (name "knetwalk")
8804 (version "19.08.3")
8805 (source
8806 (origin
8807 (method url-fetch)
8808 (uri (string-append "mirror://kde/stable/applications/" version
8809 "/src/knetwalk-" version ".tar.xz"))
8810 (sha256
8811 (base32 "1i340salzgqdw8y33wrrydmpgx3pvwf5wrbljlh67cjf6s4csx7d"))))
8812 (build-system qt-build-system)
8813 (native-inputs
8814 `(("extra-cmake-modules" ,extra-cmake-modules)
8815 ("kdoctools" ,kdoctools)))
8816 (inputs
8817 `(("kcompletion" ,kcompletion)
8818 ("kconfig" ,kconfig)
8819 ("kconfigwidgets" ,kconfigwidgets)
8820 ("kcoreaddons" ,kcoreaddons)
8821 ("kcrash" ,kcrash)
8822 ("kdbusaddons" ,kdbusaddons)
8823 ("ki18n" ,ki18n)
8824 ("ktextwidgets" ,ktextwidgets)
8825 ("kwidgetsaddons" ,kwidgetsaddons)
8826 ("kxmlgui" ,kxmlgui)
8827 ("libkdegames" ,libkdegames)
8828 ("qtbase" ,qtbase)
8829 ("qtdeclarative" ,qtdeclarative)))
8830 (home-page "https://games.kde.org/")
8831 (synopsis "Turn the board pieces to get all computers connected")
8832 (description "KNetWalk is a small game where you have to build up a
8833 computer network by rotating the wires to connect the terminals to the server.
8834 When the network is build, a highscore-list comes up where competitions can be
8835 fought out.
8836
8837 KNetwalk is a puzzle game where the player arranges sections of wire to
8838 connect all the computers on the board.
8839
8840 This package is part of the KDE games module.")
8841 (license (list license:gpl2+ license:fdl1.2+))))
8842
8843 (define-public bomber
8844 (package
8845 (name "bomber")
8846 (version "19.08.3")
8847 (source
8848 (origin
8849 (method url-fetch)
8850 (uri (string-append "mirror://kde/stable/applications/" version
8851 "/src/bomber-" version ".tar.xz"))
8852 (sha256
8853 (base32 "1lvzd0mzgq25akvwvkm57l3plm65k731v2i1ahakn985bb5gc3is"))))
8854 (build-system qt-build-system)
8855 (native-inputs
8856 `(("extra-cmake-modules" ,extra-cmake-modules)
8857 ("kdoctools" ,kdoctools)))
8858 (inputs
8859 `(("kcompletiom" ,kcompletion)
8860 ("kconfig" ,kconfig)
8861 ("kcoreaddons" ,kcoreaddons)
8862 ("kcrash" ,kcrash)
8863 ("kdbusaddons" ,kdbusaddons)
8864 ("ki18n" ,ki18n)
8865 ("kxmlgui" ,kxmlgui)
8866 ("libkdegames" ,libkdegames)
8867 ("qtbase" ,qtbase)
8868 ("qtdeclarative" ,qtdeclarative)))
8869 (home-page "https://games.kde.org/")
8870 (synopsis "Arcade bombing game")
8871 (description "Bomber is a single player arcade game.
8872
8873 The player is invading various cities in a plane that is decreasing in height.
8874 The goal of the game is to destroy all the buildings and advance to the next
8875 level. Each level gets a bit harder by increasing the speed of the plane and
8876 the height of the buildings.
8877
8878 Bomber is a game where you fly a spaceship and attempt to bomb the buildings
8879 below you. Each pass the spaceship makes, it gets lower and lower. If you've
8880 not destroyed a building in your path, you will crash into it.
8881
8882 This package is part of the KDE games module.")
8883 (license (list license:gpl2+ license:fdl1.2+))))
8884
8885 (define-public granatier
8886 (package
8887 (name "granatier")
8888 (version "19.08.3")
8889 (source
8890 (origin
8891 (method url-fetch)
8892 (uri (string-append "mirror://kde/stable/applications/" version
8893 "/src/granatier-" version ".tar.xz"))
8894 (sha256
8895 (base32 "141qmdinz7ikbbrs8dq6cap3nl22sl7pw62r80pf3xxwn2q4phpa"))))
8896 (build-system qt-build-system)
8897 (native-inputs
8898 `(("extra-cmake-modules" ,extra-cmake-modules)
8899 ("kdoctools" ,kdoctools)))
8900 (inputs
8901 `(("kcompletion" ,kcompletion)
8902 ("kconfig" ,kconfig)
8903 ("kconfigwidgets" ,kconfigwidgets)
8904 ("kcoreaddons" ,kcoreaddons)
8905 ("kcrash" ,kcrash)
8906 ("kdbusaddons" ,kdbusaddons)
8907 ("ki18n" ,ki18n)
8908 ("knewstuff" ,knewstuff)
8909 ("kwidgetsaddons" ,kwidgetsaddons)
8910 ("kxmlgui" ,kxmlgui)
8911 ("libkdegames" ,libkdegames)
8912 ("qtbase" ,qtbase)
8913 ("qtdeclarative" ,qtdeclarative)
8914 ("qtsvg" ,qtsvg)))
8915 (home-page "https://games.kde.org/")
8916 (synopsis "Bomberman clone")
8917 (description "Granatier is a clone of the classic Bomberman game,
8918 inspired by the work of the Clanbomber clone.
8919
8920 This package is part of the KDE games module.")
8921 (license (list license:gpl2+ license:fdl1.2+))))
8922
8923 (define-public ksirk
8924 (package
8925 (name "ksirk")
8926 (version "19.08.3")
8927 (source
8928 (origin
8929 (method url-fetch)
8930 (uri (string-append "mirror://kde/stable/applications/" version
8931 "/src/ksirk-" version ".tar.xz"))
8932 (sha256
8933 (base32 "1b1wixs2hp5qnvdygfwa3kvy0kn94ysa4ifmx90q6r3yfr2lpfca"))))
8934 (build-system qt-build-system)
8935 (native-inputs
8936 `(("extra-cmake-modules" ,extra-cmake-modules)
8937 ("kdoctools" ,kdoctools)))
8938 (inputs
8939 `(("kcrash" ,kcrash)
8940 ("ki18n" ,ki18n)
8941 ("kiconthemes" ,kiconthemes)
8942 ("kio" ,kio)
8943 ("knewstuff" ,knewstuff)
8944 ("kwallet" ,kwallet)
8945 ("kxmlgui" ,kxmlgui)
8946 ("libkdegames" ,libkdegames)
8947 ("phonon" ,phonon)
8948 ("qca" ,qca)
8949 ("qtbase" ,qtbase)
8950 ("qtdeclarative" ,qtdeclarative)
8951 ("qtsvg" ,qtsvg)
8952 ("zlib" ,zlib)))
8953 (home-page "https://games.kde.org/")
8954 (synopsis "Computerized version of the well known strategy board game
8955 'Risk'")
8956 (description "KsirK is a multi-player network-enabled game. The goal of
8957 the game is simply to conquer the world by attacking your neighbors with your
8958 armies.
8959
8960 At the beginning of the game, countries are distributed to all the players.
8961 Each country contains one army represented by an infantryman. Each player has
8962 some armies to distribute to his countries. On each turn, each player can
8963 attack his neighbours, eventually conquering one or more countries. At the
8964 end of each turn, some bonus armies are distributed to the players in function
8965 of the number of countries they own. The winner is the player that conquered
8966 all the world.
8967
8968 Features:
8969 @itemize
8970 @item Support for 1-6 human or computer players
8971 @item Multi-player gaming over a network
8972 @item You can easily create new skins with SVG graphics and the skin editor
8973 @item Hot New Stuff support. You can easily download and install new skins
8974 @end itemize
8975
8976 This package is part of the KDE games module.")
8977 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
8978
8979 (define-public palapeli
8980 (package
8981 (name "palapeli")
8982 (version "19.08.3")
8983 (source
8984 (origin
8985 (method url-fetch)
8986 (uri (string-append "mirror://kde/stable/applications/" version
8987 "/src/palapeli-" version ".tar.xz"))
8988 (sha256
8989 (base32 "1g91ydbc0x2y2gn3lcb5w03mn7k78l5bq4cb1s59kx6yjbflv3pw"))))
8990 (build-system qt-build-system)
8991 (native-inputs
8992 `(("extra-cmake-modules" ,extra-cmake-modules)
8993 ("kdoctools" ,kdoctools)))
8994 (inputs
8995 `(("karchive" ,karchive)
8996 ("kcompletion" ,kcompletion)
8997 ("kconfig" ,kconfig)
8998 ("kconfigwidgets" ,kconfigwidgets)
8999 ("kcoreaddons" ,kcoreaddons)
9000 ("kcrash" ,kcrash)
9001 ("kcrash" ,kcrash)
9002 ("ki18n" ,ki18n)
9003 ("ki18n" ,ki18n)
9004 ("kio" ,kio)
9005 ("kitemviews" ,kitemviews)
9006 ("knotifications" ,knotifications)
9007 ("kservice" ,kservice)
9008 ("kwidgetsaddons" ,kwidgetsaddons)
9009 ("kxmlgui" ,kxmlgui)
9010 ("libkdegames" ,libkdegames)
9011 ("qtbase" ,qtbase)
9012 ("qtdeclarative" ,qtdeclarative)
9013 ("qtsvg" ,qtsvg)
9014 ("shared-mime-info" ,shared-mime-info)))
9015 (home-page "https://games.kde.org/")
9016 (synopsis "Jigsaw puzzle game")
9017 (description "Palapeli is a jigsaw puzzle game. Unlike other games in
9018 that genre, you are not limited to aligning pieces on imaginary grids. The
9019 pieces are freely moveable. Also, Palapeli features real persistency, i.e.
9020 everything you do is saved on your disk immediately.
9021
9022 Palapeli is the Finnish word for jigsaw puzzle.
9023
9024 This package is part of the KDE games module.")
9025 (license license:gpl2+)))
9026
9027 (define-public kiriki
9028 (package
9029 (name "kiriki")
9030 (version "19.08.3")
9031 (source
9032 (origin
9033 (method url-fetch)
9034 (uri (string-append "mirror://kde/stable/applications/" version
9035 "/src/kiriki-" version ".tar.xz"))
9036 (sha256
9037 (base32 "1xg25dj95g81dc5l7k47am4j52abrwwfx4h73lvsbn4lc8lfmshw"))))
9038 (build-system qt-build-system)
9039 (native-inputs
9040 `(("extra-cmake-modules" ,extra-cmake-modules)
9041 ("kdoctools" ,kdoctools)))
9042 (inputs
9043 `(("kcompletion" ,kcompletion)
9044 ("kconfig" ,kconfig)
9045 ("kconfigwidgets" ,kconfigwidgets)
9046 ("kcoreaddons" ,kcoreaddons)
9047 ("kcrash" ,kcrash)
9048 ("kdbusaddons" ,kdbusaddons)
9049 ("ki18n" ,ki18n)
9050 ("kiconthemes" ,kiconthemes)
9051 ("kxmlgui" ,kxmlgui)
9052 ("libkdegames" ,libkdegames)
9053 ("qtbase" ,qtbase)
9054 ("qtdeclarative" ,qtdeclarative)))
9055 (home-page "https://games.kde.org/")
9056 (synopsis "Yahtzee dice game")
9057 (description "Kiriki is an addictive and fun dice game, designed to be
9058 played by as many as six players.
9059
9060 Participants have to collect points by rolling five dice for up to three times
9061 per single turn to make combinations with the highest score.
9062
9063 This package is part of the KDE games module.")
9064 (license (list license:gpl2+ license:fdl1.2+))))
9065
9066 (define-public kigo
9067 (package
9068 (name "kigo")
9069 (version "19.08.3")
9070 (source
9071 (origin
9072 (method url-fetch)
9073 (uri (string-append "mirror://kde/stable/applications/" version
9074 "/src/kigo-" version ".tar.xz"))
9075 (sha256
9076 (base32 "00l5gcbi8xyj9c1lngkrddka3a4m4cd78prfplrpq32ma9xq681f"))))
9077 (build-system qt-build-system)
9078 (native-inputs
9079 `(("extra-cmake-modules" ,extra-cmake-modules)
9080 ("kdoctools" ,kdoctools)))
9081 (inputs
9082 `(("kconfig" ,kconfig)
9083 ("kconfigwidgets" ,kconfigwidgets)
9084 ("kcoreaddons" ,kcoreaddons)
9085 ("kcrash" ,kcrash)
9086 ("kdbusaddons" ,kdbusaddons)
9087 ("ki18n" ,ki18n)
9088 ("kio" ,kio)
9089 ("knewstuff", knewstuff)
9090 ("ktextwidgets" ,ktextwidgets)
9091 ("kxmlgui" ,kxmlgui)
9092 ("libkdegames" ,libkdegames)
9093 ("qtbase" ,qtbase)
9094 ("qtdeclarative" ,qtdeclarative)
9095 ("qtsvg" ,qtsvg)))
9096 (home-page "https://games.kde.org/")
9097 (synopsis "Go board game")
9098 (description "Kigo is an open-source implementation of the popular Go
9099 game.
9100
9101 Go is a strategic board game for two players. It is also known as
9102 igo (Japanese), weiqi or wei ch'i (Chinese) or baduk (Korean). Go is noted
9103 for being rich in strategic complexity despite its simple rules. The game is
9104 played by two players who alternately place black and white stones (playing
9105 pieces, now usually made of glass or plastic) on the vacant intersections of a
9106 grid of 19x19 lines (9x9 or 13x13 for easier games).
9107
9108 You also need to install a go engine, e.g. @code{gnugo}.
9109
9110 This package is part of the KDE games module.")
9111 (license license:gpl3+)))
9112
9113 (define-public kubrick
9114 (package
9115 (name "kubrick")
9116 (version "19.08.3")
9117 (source
9118 (origin
9119 (method url-fetch)
9120 (uri (string-append "mirror://kde/stable/applications/" version
9121 "/src/kubrick-" version ".tar.xz"))
9122 (sha256
9123 (base32 "0ma8wja4rqlsmsr8cyicfpkwlgqva4450ls4c0ql53p0kabf04gx"))))
9124 (build-system qt-build-system)
9125 (native-inputs
9126 `(("extra-cmake-modules" ,extra-cmake-modules)
9127 ("kdoctools" ,kdoctools)))
9128 (inputs
9129 `(("glu" ,glu)
9130 ("kconfig" ,kconfig)
9131 ("kconfigwidgets" ,kconfigwidgets)
9132 ("kcoreaddons" ,kcoreaddons)
9133 ("kcrash" ,kcrash)
9134 ("ki18n" ,ki18n)
9135 ("kio" ,kio)
9136 ("kwidgetsaddons" ,kwidgetsaddons)
9137 ("kxmlgui" ,kxmlgui)
9138 ("libkdegames" ,libkdegames)
9139 ("qtbase" ,qtbase)
9140 ("qtdeclarative" ,qtdeclarative)
9141 ("qtsvg" ,qtsvg)))
9142 (home-page "https://games.kde.org/")
9143 (synopsis "Game based on Rubik's Cube")
9144 (description "Kubrick is a game based on the Rubik's Cube puzzle.
9145
9146 The cube sizes range from 2x2x2 up to 6x6x6, or you can play with irregular
9147 \"bricks\" such as 5x3x2 or \"mats\" such as 6x4x1 or 2x2x1. The game has a
9148 selection of puzzles at several levels of difficulty, as well as demos of
9149 pretty patterns and solution moves, or you can make up your own puzzles. The
9150 game has unlimited undo, redo, save and reload capabilities.
9151
9152 This package is part of the KDE games module.")
9153 (license (list license:gpl2+ license:fdl1.2+))))
9154
9155 (define-public lskat
9156 (package
9157 (name "lskat")
9158 (version "19.08.3")
9159 (source
9160 (origin
9161 (method url-fetch)
9162 (uri (string-append "mirror://kde/stable/applications/" version
9163 "/src/lskat-" version ".tar.xz"))
9164 (sha256
9165 (base32 "1qk5hd27zb42pbcxq5wyzz62nj5f0qdmgy54r9rnk92pzzzk94s9"))))
9166 (build-system qt-build-system)
9167 (native-inputs
9168 `(("extra-cmake-modules" ,extra-cmake-modules)
9169 ("kdoctools" ,kdoctools)))
9170 (inputs
9171 `(("kcompletion" ,kcompletion)
9172 ("kconfig" ,kconfig)
9173 ("kcoreaddons" ,kcoreaddons)
9174 ("kcrash" ,kcrash)
9175 ("kguiaddons" ,kguiaddons)
9176 ("ki18n" ,ki18n)
9177 ("kwidgetsaddons" ,kwidgetsaddons)
9178 ("kxmlgui" ,kxmlgui)
9179 ("libkdegames" ,libkdegames)
9180 ("qtbase" ,qtbase)
9181 ("qtdeclarative" ,qtdeclarative)
9182 ("qtsvg" ,qtsvg)))
9183 (home-page "https://games.kde.org/")
9184 (synopsis "Lieutnant Skat card game")
9185 (description "Lieutnant Skat (from German \"Offiziersskat\") is a fun and
9186 engaging card game for two players, where the second player is either live
9187 opponent, or a built in artificial intelligence.
9188
9189 Lieutnant Skat is a simplified variant of the Skat card game for two players.
9190
9191 This package is part of the KDE games module.")
9192 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
9193
9194 (define-public kapman
9195 (package
9196 (name "kapman")
9197 (version "19.08.3")
9198 (source
9199 (origin
9200 (method url-fetch)
9201 (uri (string-append "mirror://kde/stable/applications/" version
9202 "/src/kapman-" version ".tar.xz"))
9203 (sha256
9204 (base32 "03pq38caam30q4bw14c045kayw2d87xq1yaa3s2jkrylylfq3p0f"))))
9205 (build-system qt-build-system)
9206 (native-inputs
9207 `(("extra-cmake-modules" ,extra-cmake-modules)
9208 ("kdoctools" ,kdoctools)))
9209 (inputs
9210 `(("kcompletion" ,kcompletion)
9211 ("kconfig" ,kconfig)
9212 ("kconfigwidgets" ,kconfigwidgets)
9213 ("kcoreaddons" ,kcoreaddons)
9214 ("kcrash" ,kcrash)
9215 ("kdbusaddons" ,kdbusaddons)
9216 ("ki18n" ,ki18n)
9217 ("kxmlgui" ,kxmlgui)
9218 ("libkdegames" ,libkdegames)
9219 ("qtbase" ,qtbase)
9220 ("qtdeclarative" ,qtdeclarative)
9221 ("qtsvg" ,qtsvg)))
9222 (home-page "https://games.kde.org/")
9223 (synopsis "Pac-Man clone")
9224 (description "Kapman is a clone of the well known game Pac-Man.
9225
9226 You must run through the maze to eat all pills without being captured by a
9227 ghost. By eating an energizer, Kapman gets the ability to eat ghosts for a
9228 few seconds. When a stage is cleared of pills and energizer the player is
9229 taken to the next stage with slightly increased game speed
9230
9231 This package is part of the KDE games module.")
9232 (license (list license:gpl2+ license:fdl1.2+))))
9233
9234 (define-public kspaceduel
9235 (package
9236 (name "kspaceduel")
9237 (version "19.08.3")
9238 (source
9239 (origin
9240 (method url-fetch)
9241 (uri (string-append "mirror://kde/stable/applications/" version
9242 "/src/kspaceduel-" version ".tar.xz"))
9243 (sha256
9244 (base32 "1hppni0ihs7psc0dly5rxyy2a38nzhlig9yfyhi3lkh36z05pql8"))))
9245 (build-system qt-build-system)
9246 (native-inputs
9247 `(("extra-cmake-modules" ,extra-cmake-modules)
9248 ("kdoctools" ,kdoctools)))
9249 (inputs
9250 `(("kcompletion" ,kcompletion)
9251 ("kconfig" ,kconfig)
9252 ("kconfigwidgets" ,kconfigwidgets)
9253 ("kcoreaddons" ,kcoreaddons)
9254 ("kcrash" ,kcrash)
9255 ("kdbusaddons" ,kdbusaddons)
9256 ("ki18n" ,ki18n)
9257 ("kxmlgui" ,kxmlgui)
9258 ("libkdegames" ,libkdegames)
9259 ("qtbase" ,qtbase)
9260 ("qtdeclarative" ,qtdeclarative)
9261 ("qtsvg" ,qtsvg)))
9262 (home-page "https://games.kde.org/")
9263 (synopsis "Two player game with shooting spaceships flying around a sun")
9264 (description "KSpaceduel is a space battle game for one or two players,
9265 where two ships fly around a star in a struggle to be the only survivor.
9266
9267 This package is part of the KDE games module.")
9268 (license (list license:gpl2+ license:fdl1.2+))))
9269
9270 (define-public bovo
9271 (package
9272 (name "bovo")
9273 (version "19.08.3")
9274 (source
9275 (origin
9276 (method url-fetch)
9277 (uri (string-append "mirror://kde/stable/applications/" version
9278 "/src/bovo-" version ".tar.xz"))
9279 (sha256
9280 (base32 "0dbpng0w52nahmx7brsll66zw23ql1g6pcvn2k4g2lnvxch0i59g"))))
9281 (build-system qt-build-system)
9282 (native-inputs
9283 `(("extra-cmake-modules" ,extra-cmake-modules)
9284 ("kdoctools" ,kdoctools)))
9285 (inputs
9286 `(("kcompletion" ,kcompletion)
9287 ("kcoreaddons" ,kcoreaddons)
9288 ("kcrash" ,kcrash)
9289 ("kdbusaddons" ,kdbusaddons)
9290 ("ki18n" ,ki18n)
9291 ("kxmlgui" ,kxmlgui)
9292 ("libkdegames" ,libkdegames)
9293 ("qtbase" ,qtbase)
9294 ("qtdeclarative" ,qtdeclarative)
9295 ("qtsvg" ,qtsvg)))
9296 (home-page "https://games.kde.org/")
9297 (synopsis "Classic pen and paper game: five in a line")
9298 (description "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five
9299 points\") like game for two players, where the opponents alternate in placing
9300 their respective pictogram on the game board. The winner is the first to
9301 complete a line of five markers. (Also known as: Connect Five, Five in a row,
9302 X and O, Naughts and Crosses)
9303
9304 This package is part of the KDE games module.")
9305 (license (list license:gpl2+ license:fdl1.2+))))
9306
9307 (define-public killbots
9308 (package
9309 (name "killbots")
9310 (version "19.08.3")
9311 (source
9312 (origin
9313 (method url-fetch)
9314 (uri (string-append "mirror://kde/stable/applications/" version
9315 "/src/killbots-" version ".tar.xz"))
9316 (sha256
9317 (base32 "1qi86q7diw7glkp9v33yim9nhz2da4balbxa1hjrdgjdv8zdbxbm"))))
9318 (build-system qt-build-system)
9319 (native-inputs
9320 `(("extra-cmake-modules" ,extra-cmake-modules)
9321 ("kdoctools" ,kdoctools)))
9322 (inputs
9323 `(("kcompletion" ,kcompletion)
9324 ("kconfig" ,kconfig)
9325 ("kconfigwidgets" ,kconfigwidgets)
9326 ("kcoreaddons" ,kcoreaddons)
9327 ("kcrash" ,kcrash)
9328 ("kdbusaddons" ,kdbusaddons)
9329 ("ki18n" ,ki18n)
9330 ("kwidgetsaddons" ,kwidgetsaddons)
9331 ("kxmlgui" ,kxmlgui)
9332 ("libkdegames" ,libkdegames)
9333 ("qtbase" ,qtbase)
9334 ("qtdeclarative" ,qtdeclarative)))
9335 (home-page "https://games.kde.org/")
9336 (synopsis "Port of the classic BSD console game robots")
9337 (description "Killbots is a simple game of evading killer robots.
9338
9339 Who created the robots and why they have been programmed to destroy, no one
9340 knows. All that is known is that the robots are numerous and their sole
9341 objective is to destroy you. Fortunately for you, their creator has focused
9342 on quantity rather than quality and as a result the robots are severely
9343 lacking in intelligence. Your superior wit and a fancy teleportation device
9344 are your only weapons against the never-ending stream of mindless automatons.
9345
9346 This package is part of the KDE games module.")
9347 (license (list license:gpl2+ license:fdl1.2+))))
9348
9349 (define-public ksnakeduel
9350 (package
9351 (name "ksnakeduel")
9352 (version "19.08.3")
9353 (source
9354 (origin
9355 (method url-fetch)
9356 (uri (string-append "mirror://kde/stable/applications/" version
9357 "/src/ksnakeduel-" version ".tar.xz"))
9358 (sha256
9359 (base32 "0mprrnpax8pv7ab36zwhvdfj8id52w8g6x76nnj8qvkdlkjiqdnn"))))
9360 (build-system qt-build-system)
9361 (native-inputs
9362 `(("extra-cmake-modules" ,extra-cmake-modules)
9363 ("kdoctools" ,kdoctools)))
9364 (inputs
9365 `(("kcompletion" ,kcompletion)
9366 ("kconfig" ,kconfig)
9367 ("kconfigwidgets" ,kconfigwidgets)
9368 ("kcoreaddons" ,kcoreaddons)
9369 ("kcrash" ,kcrash)
9370 ("kdbusaddons" ,kdbusaddons)
9371 ("kguiaddons" ,kguiaddons)
9372 ("ki18n" ,ki18n)
9373 ("kxmlgui" ,kxmlgui)
9374 ("libkdegames" ,libkdegames)
9375 ("qtbase" ,qtbase)
9376 ("qtdeclarative" ,qtdeclarative)
9377 ("qtsvg" ,qtsvg)))
9378 (home-page "https://games.kde.org/")
9379 (synopsis "Snake race played against the computer")
9380 (description "KSnakeDuel is a fast action game where you steer a snake
9381 which has to eat food. While eating the snake grows. But once a player
9382 collides with the other snake or the wall the game is lost. This becomes of
9383 course more and more difficult the longer the snakes grow.
9384
9385 This package is part of the KDE games module.")
9386 (license (list license:gpl2+ license:fdl1.2+))))
9387
9388 (define-public kollision
9389 (package
9390 (name "kollision")
9391 (version "19.08.3")
9392 (source
9393 (origin
9394 (method url-fetch)
9395 (uri (string-append "mirror://kde/stable/applications/" version
9396 "/src/kollision-" version ".tar.xz"))
9397 (sha256
9398 (base32 "1p7qrn3d0ybpvc9k6k5wzj54dsrp1rqh39844maz0ay2fhvmch12"))))
9399 (build-system qt-build-system)
9400 (native-inputs
9401 `(("extra-cmake-modules" ,extra-cmake-modules)
9402 ("kdoctools" ,kdoctools)))
9403 (inputs
9404 `(("kcompletion" ,kcompletion)
9405 ("kconfig" ,kconfig)
9406 ("kcoreaddons" ,kcoreaddons)
9407 ("kcrash" ,kcrash)
9408 ("kdbusaddons" ,kdbusaddons)
9409 ("ki18n" ,ki18n)
9410 ("kwidgetsaddons" ,kwidgetsaddons)
9411 ("kxmlgui" ,kxmlgui)
9412 ("libkdegames" ,libkdegames)
9413 ("qtbase" ,qtbase)
9414 ("qtdeclarative" ,qtdeclarative)))
9415 (home-page "https://games.kde.org/")
9416 (synopsis "Simple ball dodging game")
9417 (description "In Kollision you use mouse to control a small blue ball in a
9418 closed space environment filled with small red balls, which move about
9419 chaotically. Your goal is to avoid touching any of those red balls with your
9420 blue one, because the moment you do the game will be over. The longer you can
9421 stay in game the higher will your score be.
9422
9423 This package is part of the KDE games module.")
9424 (license (list license:gpl2+ license:fdl1.2+))))
9425
9426 (define-public knavalbattle
9427 (package
9428 (name "knavalbattle")
9429 (version "19.08.3")
9430 (source
9431 (origin
9432 (method url-fetch)
9433 (uri (string-append "mirror://kde/stable/applications/" version
9434 "/src/knavalbattle-" version ".tar.xz"))
9435 (sha256
9436 (base32 "0sdfjplqkb30x2mvh66pkzay6vn5px87779sh2s8lpl6fcw0v9g4"))))
9437 (build-system qt-build-system)
9438 (native-inputs
9439 `(("extra-cmake-modules" ,extra-cmake-modules)
9440 ("kdoctools" ,kdoctools)))
9441 (inputs
9442 `(("kauth" ,kauth)
9443 ("kcompletion" ,kcompletion)
9444 ("kconfig" ,kconfig)
9445 ("kconfigwidgets" ,kconfigwidgets)
9446 ("kcoreaddons" ,kcoreaddons)
9447 ("kcrash" ,kcrash)
9448 ("kdbusaddons" ,kdbusaddons)
9449 ("kdnssd" ,kdnssd)
9450 ("ki18n" ,ki18n)
9451 ("ktextwidgets" ,ktextwidgets)
9452 ("kxmlgui" ,kxmlgui)
9453 ("libkdegames" ,libkdegames)
9454 ("qtbase" ,qtbase)
9455 ("qtdeclarative" ,qtdeclarative)))
9456 (home-page "https://games.kde.org/")
9457 (synopsis "Battleship board game with built-in game server")
9458 (description "KBattleship is a Battle Ship game for KDE.
9459
9460 Ships are placed on a board which represents the sea. Players try to hit each
9461 others ships in turns without knowing where they are placed. The first player
9462 to destroy all ships wins the game.
9463
9464 This package is part of the KDE games module.")
9465 (license (list license:gpl2+ license:fdl1.2+))))
9466
9467 (define-public kreversi
9468 (package
9469 (name "kreversi")
9470 (version "19.08.3")
9471 (source
9472 (origin
9473 (method url-fetch)
9474 (uri (string-append "mirror://kde/stable/applications/" version
9475 "/src/kreversi-" version ".tar.xz"))
9476 (sha256
9477 (base32 "0b6q8df2bawgnrswhq59z37axad0q3zpvvzxdds7sz1lw505xw9h"))))
9478 (build-system qt-build-system)
9479 (native-inputs
9480 `(("extra-cmake-modules" ,extra-cmake-modules)
9481 ("kdoctools" ,kdoctools)))
9482 (inputs
9483 `(("kconfig" ,kconfig)
9484 ("kconfigwidgets" ,kconfigwidgets)
9485 ("kcoreaddons" ,kcoreaddons)
9486 ("kcrash" ,kcrash)
9487 ("kdbusaddons" ,kdbusaddons)
9488 ("kdeclarative" ,kdeclarative)
9489 ("ki18n" ,ki18n)
9490 ("kiconthemes" ,kiconthemes)
9491 ("kio" ,kio)
9492 ("kxmlgui" ,kxmlgui)
9493 ("libkdegames" ,libkdegames)
9494 ("qtbase" ,qtbase)
9495 ("qtdeclarative" ,qtdeclarative)
9496 ("qtsvg" ,qtsvg)))
9497 (home-page "https://games.kde.org/")
9498 (synopsis "Old reversi board game, also known as othello")
9499 (description "KReversi is a simple one player strategy game played
9500 against the computer.
9501
9502 If a player's piece is captured by an opposing player, that piece is turned
9503 over to reveal the color of that player. A winner is declared when one player
9504 has more pieces of his own color on the board and there are no more possible
9505 moves.
9506
9507 This package is part of the KDE games module.")
9508 (license (list license:gpl2+ license:fdl1.2+))))
9509
9510 (define-public ksquares
9511 (package
9512 (name "ksquares")
9513 (version "19.08.3")
9514 (source
9515 (origin
9516 (method url-fetch)
9517 (uri (string-append "mirror://kde/stable/applications/" version
9518 "/src/ksquares-" version ".tar.xz"))
9519 (sha256
9520 (base32 "0hv8hls5s627lys08nnw72rfzsafj3dmp49mh2afzmh6lgk9h5vy"))))
9521 (build-system qt-build-system)
9522 (native-inputs
9523 `(("extra-cmake-modules" ,extra-cmake-modules)
9524 ("kdoctools" ,kdoctools)))
9525 (inputs
9526 `(("kcompletion" ,kcompletion)
9527 ("kconfig" ,kconfig)
9528 ("kconfigwidgets" ,kconfigwidgets)
9529 ("kcoreaddons" ,kcoreaddons)
9530 ("kcrash" ,kcrash)
9531 ("kdbusaddons" ,kdbusaddons)
9532 ("ki18n" ,ki18n)
9533 ("kwidgetsaddons" ,kwidgetsaddons)
9534 ("kxmlgui" ,kxmlgui)
9535 ("libkdegames" ,libkdegames)
9536 ("qtbase" ,qtbase)
9537 ("qtdeclarative" ,qtdeclarative)))
9538 (home-page "https://games.kde.org/")
9539 (synopsis "Dots and Boxes game")
9540 (description "KSquares is an implementation of the popular paper based
9541 game Squares. Two players take turns connecting dots on a grid to complete
9542 squares, the player with the most squares wins.
9543
9544 This package is part of the KDE games module.")
9545 (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
9546
9547 (define-public kjumpingcube
9548 (package
9549 (name "kjumpingcube")
9550 (version "19.08.3")
9551 (source
9552 (origin
9553 (method url-fetch)
9554 (uri (string-append "mirror://kde/stable/applications/" version
9555 "/src/kjumpingcube-" version ".tar.xz"))
9556 (sha256
9557 (base32 "0d67zqkf2xffjkj671gl2n6nj6jajyn6rgqqj5i6gm500mqi9rm1"))))
9558 (build-system qt-build-system)
9559 (native-inputs
9560 `(("extra-cmake-modules" ,extra-cmake-modules)
9561 ("kdoctools" ,kdoctools)))
9562 (inputs
9563 `(("kconfig" ,kconfig)
9564 ("kconfigwidgets" ,kconfigwidgets)
9565 ("kcoreaddons" ,kcoreaddons)
9566 ("kcrash" ,kcrash)
9567 ("kdbusaddons" ,kdbusaddons)
9568 ("ki18n" ,ki18n)
9569 ("kio" ,kio)
9570 ("kwidgetsaddons" ,kwidgetsaddons)
9571 ("kxmlgui" ,kxmlgui)
9572 ("libkdegames" ,libkdegames)
9573 ("qtbase" ,qtbase)
9574 ("qtdeclarative" ,qtdeclarative)
9575 ("qtsvg" ,qtsvg)))
9576 (home-page "https://games.kde.org/")
9577 (synopsis "Simple tactical game for number-crunchers")
9578 (description "KJumpingcube is a simple tactical game for one or two
9579 players, played on a grid of numbered squares. Each turn, players compete for
9580 control of the board by capturing or adding to one square.
9581
9582 This package is part of the KDE games module.")
9583 (license (list license:gpl2+ license:fdl1.2+))))
9584
9585 (define-public xmoto
9586 (package
9587 (name "xmoto")
9588 (version "0.5.11")
9589 (source
9590 (origin
9591 (method url-fetch)
9592 (uri (string-append
9593 "http://download.tuxfamily.org/xmoto/xmoto/" version "/"
9594 "xmoto-" version "-src.tar.gz"))
9595 (sha256
9596 (base32 "1ci6r8zd0l7z28cy92ddf9dmqbdqwinz2y1cny34c61b57wsd155"))
9597 (patches
9598 (search-patches
9599 "xmoto-remove-glext.patch" ;fixes licensing issue
9600 "xmoto-reproducible.patch"
9601 "xmoto-utf8.patch"))
9602 ;; Unbundle ODE.
9603 (modules '((guix build utils)))
9604 (snippet
9605 `(begin
9606 (delete-file-recursively "src/ode")
9607 #t))))
9608 (build-system gnu-build-system)
9609 (arguments
9610 ;; XXX: First flag prevents a build error with GCC7+. The second
9611 ;; flag works around missing text in game. Both are fixed
9612 ;; upstream. Remove once xmoto 0.5.12+ is released.
9613 `(#:make-flags '("CXXFLAGS=-fpermissive -D_GLIBCXX_USE_CXX11_ABI=0")
9614 #:phases
9615 (modify-phases %standard-phases
9616 (add-after 'install 'install-desktop-file
9617 (lambda* (#:key outputs #:allow-other-keys)
9618 (let* ((out (assoc-ref outputs "out"))
9619 (apps (string-append out "/share/applications"))
9620 (pixmaps (string-append out "/share/pixmaps")))
9621 (install-file "extra/xmoto.desktop" apps)
9622 (install-file "extra/xmoto.xpm" pixmaps)
9623 #t)))
9624 (add-after 'install-desktop-file 'install-fonts
9625 (lambda* (#:key outputs inputs #:allow-other-keys)
9626 (let ((font-dir (string-append (assoc-ref inputs "font-dejavu")
9627 "/share/fonts/truetype/"))
9628 (target-dir (string-append (assoc-ref outputs "out")
9629 "/share/xmoto/Textures/Fonts/")))
9630 (for-each (lambda (f)
9631 (let ((font (string-append font-dir f))
9632 (target (string-append target-dir f)))
9633 (delete-file target)
9634 (symlink font target)))
9635 '("DejaVuSans.ttf" "DejaVuSansMono.ttf"))
9636 #t)))
9637 (add-after 'install-fonts 'install-man-page
9638 (lambda* (#:key outputs #:allow-other-keys)
9639 (install-file "xmoto.6"
9640 (string-append (assoc-ref outputs "out")
9641 "/share/man/man6"))
9642 #t)))))
9643 (native-inputs
9644 `(("gettext" ,gettext-minimal)))
9645 (inputs
9646 `(("curl" ,curl)
9647 ("font-dejavu" ,font-dejavu)
9648 ("glu" ,glu)
9649 ("libjpeg" ,libjpeg)
9650 ("libpng" ,libpng)
9651 ("libxdg-basedir" ,libxdg-basedir)
9652 ("libxml2" ,libxml2)
9653 ("lua" ,lua-5.2)
9654 ("ode" ,ode)
9655 ("sdl" ,(sdl-union (list sdl sdl-mixer sdl-net sdl-ttf)))
9656 ("sqlite" ,sqlite)
9657 ("zlib" ,zlib)))
9658 (home-page "https://xmoto.tuxfamily.org/")
9659 (synopsis "2D motocross platform game")
9660 (description "X-Moto is a challenging 2D motocross platform game, where
9661 physics play an all important role in the gameplay. You need to control your
9662 bike to its limit, if you want to have a chance finishing the more difficult
9663 challenges.")
9664 (license (list license:gpl2+ ;whole project
9665 license:bsd-4 ;src/bzip
9666 license:bsd-3 ;src/md5sum
9667 license:lgpl2.1+ ;src/iqsort.h
9668 license:expat))))