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