gnu: retroarch: Use shared zlib.
[jackhill/guix/guix.git] / gnu / packages / emulators.scm
CommitLineData
e5f9ec8b 1;;; GNU Guix --- Functional package management for GNU
9af704c5
RH
2;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
3;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
4;;; Copyright © 2015, 2016 Sou Bunnbu <iyzsong@gmail.com>
5;;; Copyright © 2015, 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
6;;; Copyright © 2015, 2018 David Thompson <dthompson2@worcester.edu>
7;;; Copyright © 2016 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
e89bfc2d 8;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
4c40ed9d 9;;; Copyright © 2017, 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
9af704c5
RH
10;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
11;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
e5f9ec8b
RH
12;;;
13;;; This file is part of GNU Guix.
14;;;
15;;; GNU Guix is free software; you can redistribute it and/or modify it
16;;; under the terms of the GNU General Public License as published by
17;;; the Free Software Foundation; either version 3 of the License, or (at
18;;; your option) any later version.
19;;;
20;;; GNU Guix is distributed in the hope that it will be useful, but
21;;; WITHOUT ANY WARRANTY; without even the implied warranty of
22;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;;; GNU General Public License for more details.
24;;;
25;;; You should have received a copy of the GNU General Public License
26;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
27
28(define-module (gnu packages emulators)
29 #:use-module ((guix licenses) #:prefix license:)
30 #:use-module (guix packages)
9af704c5 31 #:use-module (guix download)
e5f9ec8b 32 #:use-module (guix git-download)
9af704c5
RH
33 #:use-module (guix svn-download)
34 #:use-module (gnu packages)
35 #:use-module (gnu packages algebra)
4c40ed9d 36 #:use-module (gnu packages assembly)
e5f9ec8b 37 #:use-module (gnu packages audio)
9af704c5
RH
38 #:use-module (gnu packages autotools)
39 #:use-module (gnu packages base)
40 #:use-module (gnu packages boost)
41 #:use-module (gnu packages backup)
e5f9ec8b
RH
42 #:use-module (gnu packages compression)
43 #:use-module (gnu packages curl)
9af704c5 44 #:use-module (gnu packages databases)
e5f9ec8b
RH
45 #:use-module (gnu packages fonts)
46 #:use-module (gnu packages fontutils)
9af704c5 47 #:use-module (gnu packages freedesktop)
e5f9ec8b 48 #:use-module (gnu packages game-development)
cbf58afa 49 #:use-module (gnu packages gcc)
e5f9ec8b
RH
50 #:use-module (gnu packages gettext)
51 #:use-module (gnu packages gl)
52 #:use-module (gnu packages glib)
53 #:use-module (gnu packages gtk)
54 #:use-module (gnu packages image)
9af704c5
RH
55 #:use-module (gnu packages imagemagick)
56 #:use-module (gnu packages libedit)
e5f9ec8b
RH
57 #:use-module (gnu packages libusb)
58 #:use-module (gnu packages linux)
c8b2fd28
NG
59 #:use-module (gnu packages lua)
60 #:use-module (gnu packages maths)
4c40ed9d 61 #:use-module (gnu packages mp3)
c8b2fd28 62 #:use-module (gnu packages music)
9af704c5 63 #:use-module (gnu packages ncurses)
c8b2fd28 64 #:use-module (gnu packages networking)
e5f9ec8b
RH
65 #:use-module (gnu packages pkg-config)
66 #:use-module (gnu packages pulseaudio)
9af704c5 67 #:use-module (gnu packages python)
e5f9ec8b
RH
68 #:use-module (gnu packages qt)
69 #:use-module (gnu packages sdl)
c8b2fd28
NG
70 #:use-module (gnu packages texinfo)
71 #:use-module (gnu packages textutils)
e5f9ec8b
RH
72 #:use-module (gnu packages tls)
73 #:use-module (gnu packages upnp)
74 #:use-module (gnu packages video)
9af704c5 75 #:use-module (gnu packages vulkan)
e5f9ec8b 76 #:use-module (gnu packages wxwidgets)
9af704c5 77 #:use-module (gnu packages xdisorg)
e5f9ec8b 78 #:use-module (gnu packages xiph)
9af704c5 79 #:use-module (gnu packages xml)
e5f9ec8b 80 #:use-module (gnu packages xorg)
c8b2fd28 81 #:use-module (gnu packages web)
9af704c5
RH
82 #:use-module (guix build-system cmake)
83 #:use-module (guix build-system gnu))
84
85(define-public desmume
86 (package
87 (name "desmume")
88 (version "0.9.11")
89 (source
90 (origin
91 (method url-fetch)
92 (uri (string-append
93 "mirror://sourceforge/desmume/desmume/"
94 version "/desmume-" version ".tar.gz"))
95 (sha256
96 (base32
97 "15l8wdw3q61fniy3h93d84dnm6s4pyadvh95a0j6d580rjk4pcrs"))))
98 (build-system gnu-build-system)
99 (arguments
100 ;; Enable support for WiFi and microphone.
101 `(#:configure-flags '("--enable-wifi"
102 "--enable-openal")))
103 (native-inputs
104 `(("pkg-config" ,pkg-config)
105 ("intltool" ,intltool)))
106 (inputs
107 `(("zlib" ,zlib)
108 ("sdl" ,sdl)
109 ("glib" ,glib)
110 ("gtk+" ,gtk+-2)
111 ("glu" ,glu)))
112 (home-page "http://desmume.org/")
113 (synopsis "Nintendo DS emulator")
114 (description
115 "DeSmuME is an emulator for the Nintendo DS handheld gaming console.")
116 (license license:gpl2)))
e5f9ec8b
RH
117
118;; Building from recent Git because the official 5.0 release no longer builds.
119(define-public dolphin-emu
fefe17b0
RH
120 (let ((commit "5f0d825f40b8aabe13eaef32d44ab667ff8e8c28")
121 (revision "3"))
e5f9ec8b
RH
122 (package
123 (name "dolphin-emu")
124 (version (git-version "5.0" revision commit))
125 (source
126 (origin
127 (method git-fetch)
128 (uri (git-reference
129 (url "https://github.com/dolphin-emu/dolphin.git")
130 (commit commit)))
131 (file-name (git-file-name name version))
85280804
EF
132 (modules '((guix build utils)))
133 (snippet
134 '(begin
135 ;; Remove external stuff we don't need.
136 (for-each (lambda (dir)
137 (delete-file-recursively
138 (string-append "Externals/" dir)))
fab8d41c 139 '("LZO" "OpenAL" "Qt" "SFML" "curl" "ffmpeg"
85280804 140 "gettext" "hidapi" "libpng" "libusb" "mbedtls"
fab8d41c 141 "miniupnpc" "zlib"))
85280804
EF
142 ;; Clean up source.
143 (for-each delete-file (find-files "." ".*\\.(bin|dsy|exe|jar|rar)$"))
144 #t))
e5f9ec8b
RH
145 (sha256
146 (base32
fefe17b0 147 "0dh7mih16aif9ynbgcsn7n10f89g8d232i86xqfp2rijsdggcmzl"))))
e5f9ec8b
RH
148 (build-system cmake-build-system)
149 (arguments
150 '(#:tests? #f
e5f9ec8b
RH
151 #:phases
152 (modify-phases %standard-phases
cbf58afa
RH
153 (add-before 'configure 'fixgcc7
154 (lambda _
155 (unsetenv "C_INCLUDE_PATH")
156 (unsetenv "CPLUS_INCLUDE_PATH")))
6bebad77 157 (add-before 'configure 'generate-fonts&hardcore-libvulkan-path
e5f9ec8b
RH
158 (lambda* (#:key inputs outputs #:allow-other-keys)
159 (let ((fontfile
160 (string-append (assoc-ref inputs "font-wqy-microhei")
6bebad77
RH
161 "/share/fonts/truetype/wqy-microhei.ttc"))
162 (libvulkan
e6fcf903 163 (string-append (assoc-ref inputs "vulkan-loader")
6bebad77 164 "/lib/libvulkan.so")))
e5f9ec8b
RH
165 (chdir "docs")
166 (invoke "bash" "-c" "g++ -O2 -std=c++11 $(freetype-config \
167--cflags --libs) gc-font-tool.cpp -o gc-font-tool")
168 (invoke "./gc-font-tool" "a" fontfile "font_western.bin")
169 (invoke "./gc-font-tool" "s" fontfile "font_japanese.bin")
170 (copy-file "font_japanese.bin" "../Data/Sys/GC/font_japanese.bin")
171 (copy-file "font_western.bin" "../Data/Sys/GC/font_western.bin")
172 (chdir "..")
6bebad77
RH
173 (substitute* "Source/Core/VideoBackends/Vulkan/VulkanLoader.cpp"
174 (("libvulkan.so") libvulkan))
e5f9ec8b
RH
175 #t))))
176
fab8d41c
RH
177 ;; The FindGTK2 cmake script only checks hardcoded directories for
178 ;; glib/gtk headers.
179
e5f9ec8b 180 #:configure-flags
fab8d41c 181 (list (string-append "-DX11_INCLUDE_DIR="
e5f9ec8b
RH
182 (assoc-ref %build-inputs "libx11")
183 "/include")
184 (string-append "-DX11_LIBRARIES="
185 (assoc-ref %build-inputs "libx11")
186 "/lib/libX11.so")
187 "-DX11_FOUND=1")))
e5f9ec8b
RH
188 (native-inputs
189 `(("pkg-config" ,pkg-config)
cbf58afa 190 ("gcc" ,gcc-7) ; Building with gcc@5 doesn't work anymore.
e5f9ec8b
RH
191 ("gettext" ,gnu-gettext)))
192 (inputs
193 `(("alsa-lib" ,alsa-lib)
194 ("ao" ,ao)
195 ("bluez" ,bluez)
196 ("curl" ,curl)
197 ("eudev" ,eudev)
06079c19 198 ("ffmpeg" ,ffmpeg-3.4)
e5f9ec8b
RH
199 ("font-wqy-microhei" ,font-wqy-microhei)
200 ("freetype" ,freetype)
201 ("glew" ,glew)
202 ("glib" ,glib)
203 ("glu" ,glu)
204 ("gtk+" ,gtk+-2)
205 ("hidapi" ,hidapi)
206 ("libevdev" ,libevdev)
207 ("libpng" ,libpng)
208 ("libusb" ,libusb)
209 ("libx11" ,libx11)
210 ("libxi" ,libxi)
211 ("libxrandr" ,libxrandr)
212 ("lzo" ,lzo)
213 ("mbedtls-apache" ,mbedtls-apache)
214 ("mesa" ,mesa)
215 ("miniupnpc" ,miniupnpc)
216 ("openal" ,openal)
fab8d41c 217 ("pugixml" ,pugixml)
e5f9ec8b
RH
218 ("pulseaudio" ,pulseaudio)
219 ("qtbase" ,qtbase)
220 ("sdl2" ,sdl2)
221 ("sfml" ,sfml)
222 ("soil" ,soil)
223 ("soundtouch" ,soundtouch)
e6fcf903 224 ("vulkan-loader" ,vulkan-loader)
e5f9ec8b
RH
225 ("zlib" ,zlib)))
226 (home-page "https://dolphin-emu.org/")
227 (synopsis "Nintendo Wii and GameCube emulator")
228 (description
229 "Dolphin is an emulator for two Nintendo video game consoles: the
230GameCube and the Wii. It provides compatibility with all PC controllers,
231turbo speed, networked multiplayer, and graphical enhancements.")
e89bfc2d 232 (supported-systems '("x86_64-linux" "aarch64-linux"))
e5f9ec8b
RH
233 ; dolphin/Data/Sys/GC/font_*.bin: Licensed under ASL2.0.
234 (license (list license:gpl2+ license:asl2.0 license:fdl1.2+)))))
9af704c5
RH
235
236(define-public dosbox
237 (package
238 (name "dosbox")
239 (version "0.74.svn3947")
240 (source (origin
241 (method svn-fetch)
242 (uri (svn-reference
243 (url "http://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk/")
244 (revision 3947)))
245 (file-name (string-append name "-" version "-checkout"))
246 ;; Use SVN head, since the last release (2010) is incompatible
247 ;; with GCC 4.8+ (see
248 ;; <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624976>).
249 (sha256
250 (base32
251 "1p918j6090d1nkvgq7ifvmn506zrdmyi32y7p3ms40d5ssqjg8fj"))))
252 (build-system gnu-build-system)
253 (arguments
254 `(#:phases (modify-phases %standard-phases
255 (add-after
256 'unpack 'autogen.sh
257 (lambda _
258 (zero? (system* "sh" "autogen.sh")))))))
259 (native-inputs
260 `(("autoconf" ,autoconf)
261 ("automake" ,automake)))
262 (inputs
263 `(("sdl" ,sdl)
264 ("libpng" ,libpng)
265 ("zlib" ,zlib)
266 ("alsa-lib" ,alsa-lib)
267 ("glu" ,glu)
268 ("mesa" ,mesa)))
269 (home-page "http://www.dosbox.com")
270 (synopsis "X86 emulator with CGA/EGA/VGA/etc. graphics and sound")
271 (description "DOSBox is a DOS-emulator that uses the SDL library. DOSBox
272also emulates CPU:286/386 realmode/protected mode, Directory
273FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a
274SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility with
275older games.")
276 (license license:gpl2+)))
277
278(define-public emulation-station
279 (let ((commit "646bede3d9ec0acf0ae378415edac136774a66c5"))
280 (package
281 (name "emulation-station")
282 (version "2.0.1")
283 (source (origin
284 (method git-fetch) ; no tarball available
285 (uri (git-reference
286 (url "https://github.com/Aloshi/EmulationStation.git")
287 (commit commit))) ; no version tag
288 (file-name (string-append name "-" version "-checkout"))
289 (sha256
290 (base32
291 "0cm0sq2wri2l9cvab1l0g02za59q7klj0h3p028vr96n6njj4w9v"))))
292 (build-system cmake-build-system)
293 (arguments
294 '(#:tests? #f)) ; no tests
295 (inputs
296 `(("alsa-lib" ,alsa-lib)
297 ("boost" ,boost)
298 ("curl" ,curl)
299 ("eigin" ,eigen)
300 ("freeimage" ,freeimage)
301 ("freetype" ,freetype)
302 ("mesa" ,mesa)
303 ("sdl2" ,sdl2)))
304 (synopsis "Video game console emulator front-end")
305 (description "EmulationStation provides a graphical front-end to a large
306number of video game console emulators. It features an interface that is
307usable with any game controller that has at least 4 buttons, theming support,
308and a game metadata scraper.")
309 (home-page "http://www.emulationstation.org")
310 (license license:expat))))
311
312(define-public higan
313 (package
314 (name "higan")
315 (version "106")
316 (source
317 (origin
318 (method url-fetch)
319 (uri (string-append
320 "https://gitlab.com/higan/higan/repository/archive.tar.gz?ref=v"
321 version))
322 (file-name (string-append name "-" version ".tar.gz"))
323 (sha256
324 (base32 "0y42pra0dxzlbkyzcp3r8a39pji2bj3p9fl40425f60af2igr4rw"))
325 (patches (search-patches "higan-remove-march-native-flag.patch"))))
326 (build-system gnu-build-system)
327 (native-inputs
328 `(("pkg-config" ,pkg-config)))
329 (inputs
330 `(("alsa-lib" ,alsa-lib)
331 ("ao" ,ao)
332 ("eudev" ,eudev)
333 ("gtk+" ,gtk+-2)
334 ("gtksourceview-2" ,gtksourceview-2)
335 ("libxv" ,libxv)
336 ("mesa" ,mesa)
337 ("openal" ,openal)
338 ("pulseaudio" ,pulseaudio)
339 ("sdl" ,sdl)))
340 (arguments
341 '(#:phases
342 (let ((build-phase (assoc-ref %standard-phases 'build))
343 (install-phase (assoc-ref %standard-phases 'install)))
344 (modify-phases %standard-phases
345 ;; The higan build system has no configure phase.
346 (delete 'configure)
347 (add-before 'build 'chdir-to-higan
348 (lambda _
349 (chdir "higan")))
350 (add-before 'install 'create-/share/applications
351 (lambda* (#:key outputs #:allow-other-keys)
352 (let ((out (assoc-ref outputs "out")))
353 ;; It seems the author forgot to do this in the Makefile.
354 (mkdir-p (string-append out "/share/applications")))))
355 (add-after 'install 'chdir-to-icarus
356 (lambda _
357 (chdir "../icarus")))
358 (add-after 'chdir-to-icarus 'build-icarus build-phase)
359 (add-after 'build-icarus 'install-icarus install-phase)
360 (add-after 'install-icarus 'wrap-higan-executable
361 (lambda* (#:key inputs outputs #:allow-other-keys)
362 (let* ((out (assoc-ref outputs "out"))
363 (bin (string-append out "/bin"))
364 (higan (string-append bin "/higan"))
365 (higan-original (string-append higan "-original"))
366 (bash (string-append (assoc-ref inputs "bash")
367 "/bin/bash"))
368 (coreutils (assoc-ref inputs "coreutils"))
369 (mkdir (string-append coreutils "/bin/mkdir"))
370 (cp (string-append coreutils "/bin/cp"))
371 (cp-r (string-append cp " -r --no-preserve=mode")))
372 ;; First, have the executable make sure ~/.local/share/higan
373 ;; contains up to date files. Higan insists on looking there
374 ;; for these data files.
375 (rename-file higan higan-original)
376 (with-output-to-file higan
377 (lambda ()
378 (display
379 (string-append
380 "#!" bash "\n"
381 ;; higan doesn't respect $XDG_DATA_HOME
382 mkdir " -p ~/.local/share\n"
383 cp-r " " out "/share/higan ~/.local/share\n"
384 "exec " higan-original))))
385 (chmod higan #o555)
386 ;; Second, make sure higan will find icarus in PATH.
387 (wrap-program higan
388 `("PATH" ":" prefix (,bin))))))))
389 #:make-flags
390 (list "compiler=g++"
391 (string-append "prefix=" (assoc-ref %outputs "out")))
392 ;; There is no test suite.
393 #:tests? #f))
394 (home-page "http://byuu.org/emulation/higan/")
395 (synopsis "Nintendo multi-system emulator")
396 (description
397 "higan (formerly bsnes) is an emulator for multiple Nintendo video game
398consoles, including the Nintendo Entertainment System (NES/Famicom), Super
399Nintendo Entertainment System (SNES/Super Famicom), Game Boy, Game Boy
400Color (GBC), and Game Boy Advance (GBA). It also supports the subsystems
401Super Game Boy, BS-X Satellaview, and Sufami Turbo.")
402 ;; As noted in these files among more:
403 ;; - icarus/icarus.cpp
404 ;; - higan/emulator/emulator.hpp
405 (license license:gpl3)))
406
407(define-public mgba
408 (package
409 (name "mgba")
fc121137 410 (version "0.6.3")
9af704c5
RH
411 (source (origin
412 (method url-fetch)
413 (uri (string-append "https://github.com/mgba-emu/mgba/archive/"
414 version ".tar.gz"))
415 (file-name (string-append name "-" version ".tar.gz"))
416 (sha256
417 (base32
fc121137 418 "16hgs6r5iym3lp2cjcnv9955333976yc5sgy2kkxlsi005n91j1m"))
9af704c5
RH
419 (modules '((guix build utils)))
420 (snippet
421 ;; Make sure we don't use the bundled software.
6cbee49d
MW
422 '(begin
423 (for-each
424 (lambda (subdir)
425 (let ((lib-subdir (string-append "src/third-party/" subdir)))
426 (delete-file-recursively lib-subdir)))
427 '("libpng" "lzma" "sqlite3" "zlib"))
428 #t))))
9af704c5
RH
429 (build-system cmake-build-system)
430 (arguments
431 `(#:tests? #f ;no "test" target
432 #:configure-flags
433 (list "-DUSE_LZMA=OFF" ;do not use bundled LZMA
434 "-DUSE_LIBZIP=OFF" ;use "zlib" instead
435 (string-append "-DCMAKE_INSTALL_LIBDIR="
436 (assoc-ref %outputs "out") "/lib"))))
437 (native-inputs `(("pkg-config" ,pkg-config)))
438 (inputs `(("ffmpeg" ,ffmpeg)
439 ("imagemagick" ,imagemagick)
440 ("libedit" ,libedit)
441 ("libepoxy" ,libepoxy)
442 ("libpng" ,libpng)
443 ("mesa" ,mesa)
444 ("minizip" ,minizip)
445 ("ncurses" ,ncurses)
446 ("qtbase" ,qtbase)
447 ("qtmultimedia" ,qtmultimedia)
448 ("qttools" ,qttools)
449 ("sdl2" ,sdl2)
450 ("sqlite" ,sqlite)
451 ("zlib" ,zlib)))
452 (home-page "https://mgba.io")
453 (synopsis "Game Boy Advance emulator")
454 (description
455 "mGBA is an emulator for running Game Boy Advance games. It aims to be
456faster and more accurate than many existing Game Boy Advance emulators, as
457well as adding features that other emulators lack. It also supports Game Boy
458and Game Boy Color games.")
459 ;; Code is mainly MPL 2.0. "blip_buf.c" is LGPL 2.1+ and "inih.c" is
460 ;; BSD-3.
461 (license (list license:mpl2.0 license:lgpl2.1+ license:bsd-3))))
462
463(define-public mupen64plus-core
464 (package
465 (name "mupen64plus-core")
466 (version "2.5")
467 (source
468 (origin
469 (method url-fetch)
470 (uri (string-append
471 "https://github.com/mupen64plus/mupen64plus-core/archive/"
472 version ".tar.gz"))
473 (file-name (string-append name "-" version ".tar.gz"))
474 (sha256
475 (base32 "0dg2hksm5qni2hcha93k7n4fqr92888p946f7phb0ndschzfh9kk"))))
476 (build-system gnu-build-system)
477 (native-inputs
478 `(("pkg-config" ,pkg-config)
479 ("which" ,which)))
480 (inputs
481 `(("freetype" ,freetype)
482 ("glu" ,glu)
483 ("libpng" ,libpng)
484 ("mesa" ,mesa)
485 ("sdl2" ,sdl2)
486 ("zlib" ,zlib)))
487 (arguments
488 '(#:phases
489 (modify-phases %standard-phases
490 ;; The mupen64plus build system has no configure phase.
491 (delete 'configure)
492 ;; Makefile is in a subdirectory.
493 (add-before
494 'build 'cd-to-project-dir
495 (lambda _
496 (chdir "projects/unix"))))
497 #:make-flags (let ((out (assoc-ref %outputs "out")))
498 (list "all" (string-append "PREFIX=" out)))
499 ;; There are no tests.
500 #:tests? #f))
501 ;; As per the Makefile (in projects/unix/Makefile):
502 (supported-systems '("i686-linux" "x86_64-linux"))
503 (home-page "http://www.mupen64plus.org/")
504 (synopsis "Nintendo 64 emulator core library")
505 (description
506 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
507which is capable of accurately playing many games. This package contains the
508core library.")
509 (license license:gpl2+)))
510
511(define-public mupen64plus-audio-sdl
512 (package
513 (name "mupen64plus-audio-sdl")
514 (version "2.5")
515 (source
516 (origin
517 (method url-fetch)
518 (uri (string-append
519 "https://github.com/mupen64plus/mupen64plus-audio-sdl/archive/"
520 version ".tar.gz"))
521 (file-name (string-append name "-" version ".tar.gz"))
522 (sha256
523 (base32 "0ss6w92n2rpfnazhg9lbq0nvs3fqx93nliz3k3wjxdlx4dpi7h3a"))))
524 (build-system gnu-build-system)
525 (native-inputs
526 `(("pkg-config" ,pkg-config)
527 ("which" ,which)))
528 (inputs
529 `(("mupen64plus-core" ,mupen64plus-core)
530 ("sdl2" ,sdl2)))
531 (arguments
532 '(#:phases
533 (modify-phases %standard-phases
534 ;; The mupen64plus build system has no configure phase.
535 (delete 'configure)
536 ;; Makefile is in a subdirectory.
537 (add-before
538 'build 'cd-to-project-dir
539 (lambda _
540 (chdir "projects/unix"))))
541 #:make-flags
542 (let ((out (assoc-ref %outputs "out"))
543 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
544 (list "all"
545 (string-append "PREFIX=" out)
546 (string-append "APIDIR=" m64p "/include/mupen64plus")))
547 ;; There are no tests.
548 #:tests? #f))
549 (home-page "http://www.mupen64plus.org/")
550 (synopsis "Mupen64Plus SDL input plugin")
551 (description
552 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
553which is capable of accurately playing many games. This package contains the
554SDL audio plugin.")
555 (license license:gpl2+)))
556
557(define-public mupen64plus-input-sdl
558 (package
559 (name "mupen64plus-input-sdl")
560 (version "2.5")
561 (source
562 (origin
563 (method url-fetch)
564 (uri (string-append
565 "https://github.com/mupen64plus/mupen64plus-input-sdl/archive/"
566 version ".tar.gz"))
567 (file-name (string-append name "-" version ".tar.gz"))
568 (sha256
569 (base32 "11sj5dbalp2nrlmki34vy7wy28vc175pnnkdk65p8599hnyq37ri"))))
570 (build-system gnu-build-system)
571 (native-inputs
572 `(("which" ,which)))
573 (inputs
574 `(("mupen64plus-core" ,mupen64plus-core)
575 ("sdl2" ,sdl2)))
576 (arguments
577 '(#:phases
578 (modify-phases %standard-phases
579 ;; The mupen64plus build system has no configure phase.
580 (delete 'configure)
581 ;; Makefile is in a subdirectory.
582 (add-before
583 'build 'cd-to-project-dir
584 (lambda _
585 (chdir "projects/unix"))))
586 #:make-flags
587 (let ((out (assoc-ref %outputs "out"))
588 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
589 (list "all"
590 (string-append "PREFIX=" out)
591 (string-append "APIDIR=" m64p "/include/mupen64plus")))
592 ;; There are no tests.
593 #:tests? #f))
594 (home-page "http://www.mupen64plus.org/")
595 (synopsis "Mupen64Plus SDL input plugin")
596 (description
597 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
598which is capable of accurately playing many games. This package contains the
599SDL input plugin.")
600 (license license:gpl2+)))
601
602(define-public mupen64plus-rsp-hle
603 (package
604 (name "mupen64plus-rsp-hle")
605 (version "2.5")
606 (source
607 (origin
608 (method url-fetch)
609 (uri (string-append
610 "https://github.com/mupen64plus/mupen64plus-rsp-hle/archive/"
611 version ".tar.gz"))
612 (file-name (string-append name "-" version ".tar.gz"))
613 (sha256
614 (base32 "15h7mgz6xd2zjzm6l3f96sbs8kwr3xvbwzgikhnka79m6c69hsxv"))))
615 (build-system gnu-build-system)
616 (inputs
617 `(("mupen64plus-core" ,mupen64plus-core)))
618 (arguments
619 '(#:phases
620 (modify-phases %standard-phases
621 ;; The mupen64plus build system has no configure phase.
622 (delete 'configure)
623 ;; Makefile is in a subdirectory.
624 (add-before
625 'build 'cd-to-project-dir
626 (lambda _
627 (chdir "projects/unix"))))
628 #:make-flags
629 (let ((out (assoc-ref %outputs "out"))
630 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
631 (list "all"
632 (string-append "PREFIX=" out)
633 (string-append "APIDIR=" m64p "/include/mupen64plus")))
634 ;; There are no tests.
635 #:tests? #f))
636 (home-page "http://www.mupen64plus.org/")
637 (synopsis "Mupen64Plus SDL input plugin")
638 (description
639 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
640which is capable of accurately playing many games. This package contains the
641high-level emulation (HLE) RSP processor plugin.")
642 (license license:gpl2+)))
643
644(define-public mupen64plus-rsp-z64
645 (package
646 (name "mupen64plus-rsp-z64")
647 (version "2.0.0")
648 (source
649 (origin
650 (method url-fetch)
651 (uri (string-append
652 "https://github.com/mupen64plus/mupen64plus-rsp-z64/archive/"
653 version ".tar.gz"))
654 (file-name (string-append name "-" version ".tar.gz"))
655 (sha256
656 (base32 "10jz1w2dhx5slhyk4m8mdqlpsd6cshchslr1fckb2ayzb1ls3ghi"))))
657 (build-system gnu-build-system)
658 (inputs
659 `(("mupen64plus-core" ,mupen64plus-core)))
660 (arguments
661 '(#:phases
662 (modify-phases %standard-phases
663 ;; The mupen64plus build system has no configure phase.
664 (delete 'configure)
665 ;; Makefile is in a subdirectory.
666 (add-before
667 'build 'cd-to-project-dir
668 (lambda _
669 (chdir "projects/unix"))))
670 #:make-flags
671 (let ((out (assoc-ref %outputs "out"))
672 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
673 (list "all"
674 (string-append "PREFIX=" out)
675 (string-append "APIDIR=" m64p "/include/mupen64plus")))
676 ;; There are no tests.
677 #:tests? #f))
678 (home-page "http://www.mupen64plus.org/")
679 (synopsis "Mupen64Plus SDL input plugin")
680 (description
681 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
682which is capable of accurately playing many games. This package contains the
683Z64 RSP processor plugin.")
684 (license license:gpl2+)))
685
686(define-public mupen64plus-video-arachnoid
687 (package
688 (name "mupen64plus-video-arachnoid")
689 (version "2.0.0")
690 (source
691 (origin
692 (method url-fetch)
693 (uri (string-append
694 "https://github.com/mupen64plus/mupen64plus-video-arachnoid/archive/"
695 version ".tar.gz"))
696 (file-name (string-append name "-" version ".tar.gz"))
697 (sha256
698 (base32 "0jjwf144rihznm4lnqbhgigxw664v3v32wy94adaa6imk8z6gslh"))))
699 (build-system gnu-build-system)
700 (native-inputs
701 `(("pkg-config" ,pkg-config)
702 ("which" ,which)))
703 (inputs
704 `(("mesa" ,mesa)
705 ("mupen64plus-core" ,mupen64plus-core)))
706 (arguments
707 '(#:phases
708 (modify-phases %standard-phases
709 ;; The mupen64plus build system has no configure phase.
710 (delete 'configure)
711 ;; Makefile is in a subdirectory.
712 (add-before
713 'build 'cd-to-project-dir
714 (lambda _
715 (chdir "projects/unix"))))
716 #:make-flags
717 (let ((out (assoc-ref %outputs "out"))
718 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
719 (list "all"
720 (string-append "PREFIX=" out)
721 (string-append "APIDIR=" m64p "/include/mupen64plus")))
722 ;; There are no tests.
723 #:tests? #f))
724 (home-page "http://www.mupen64plus.org/")
725 (synopsis "Mupen64Plus Rice Video plugin")
726 (description
727 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
728which is capable of accurately playing many games. This package contains the
729Arachnoid video plugin.")
730 (license license:gpl2+)))
731
732(define-public mupen64plus-video-glide64
733 (package
734 (name "mupen64plus-video-glide64")
735 (version "2.0.0")
736 (source
737 (origin
738 (method url-fetch)
739 (uri (string-append
740 "https://github.com/mupen64plus/mupen64plus-video-glide64/archive/"
741 version ".tar.gz"))
742 (file-name (string-append name "-" version ".tar.gz"))
743 (sha256
744 (base32 "1rm55dbf6xgsq1blbzs6swa2ajv0qkn38acbljj346abnk6s3dla"))))
745 (build-system gnu-build-system)
746 (native-inputs
747 `(("pkg-config" ,pkg-config)
748 ("which" ,which)))
749 (inputs
750 `(("mesa" ,mesa)
751 ("mupen64plus-core" ,mupen64plus-core)
752 ("sdl2" ,sdl2)))
753 (arguments
754 '(#:phases
755 (modify-phases %standard-phases
756 ;; The mupen64plus build system has no configure phase.
757 (delete 'configure)
758 ;; Makefile is in a subdirectory.
759 (add-before
760 'build 'cd-to-project-dir
761 (lambda _
762 (chdir "projects/unix")))
763 ;; XXX Should be unnecessary with the next release.
764 (add-before
765 'build 'use-sdl2
766 (lambda _
767 (substitute* "Makefile"
768 (("SDL_CONFIG = (.*)sdl-config" all prefix)
769 (string-append "SDL_CONFIG = " prefix "sdl2-config"))))))
770 #:make-flags
771 (let ((out (assoc-ref %outputs "out"))
772 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
773 (list "all"
774 (string-append "PREFIX=" out)
775 (string-append "APIDIR=" m64p "/include/mupen64plus")))
776 ;; There are no tests.
777 #:tests? #f))
778 (home-page "http://www.mupen64plus.org/")
779 (synopsis "Mupen64Plus Rice Video plugin")
780 (description
781 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
782which is capable of accurately playing many games. This package contains the
783Glide64 video plugin.")
784 (license license:gpl2+)))
785
786(define-public mupen64plus-video-glide64mk2
787 (package
788 (name "mupen64plus-video-glide64mk2")
789 (version "2.5")
790 (source
791 (origin
792 (method url-fetch)
793 (uri (string-append
794 "https://github.com/mupen64plus/mupen64plus-video-glide64mk2/archive/"
795 version ".tar.gz"))
796 (file-name (string-append name "-" version ".tar.gz"))
797 (sha256
798 (base32 "1ihl4q293d6svba26b4mhapjcdg12p90gibz79b4mx423jlcxxj9"))))
799 (build-system gnu-build-system)
800 (native-inputs
801 `(("pkg-config" ,pkg-config)
802 ("which" ,which)))
803 (inputs
804 `(("boost" ,boost)
805 ("libpng" ,libpng)
806 ("mesa" ,mesa)
807 ("mupen64plus-core" ,mupen64plus-core)
808 ("sdl2" ,sdl2)
809 ("zlib" ,zlib)))
810 (arguments
811 '(#:phases
812 (modify-phases %standard-phases
813 ;; The mupen64plus build system has no configure phase.
814 (delete 'configure)
815 ;; Makefile is in a subdirectory.
816 (add-before
817 'build 'cd-to-project-dir
818 (lambda _
819 (chdir "projects/unix"))))
820 #:make-flags
821 (let ((out (assoc-ref %outputs "out"))
822 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
823 (list "all"
824 (string-append "PREFIX=" out)
825 (string-append "APIDIR=" m64p "/include/mupen64plus")))
826 ;; There are no tests.
827 #:tests? #f))
828 (home-page "http://www.mupen64plus.org/")
829 (synopsis "Mupen64Plus Rice Video plugin")
830 (description
831 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
832which is capable of accurately playing many games. This package contains the
833Glide64MK2 video plugin.")
834 (license license:gpl2+)))
835
836(define-public mupen64plus-video-rice
837 (package
838 (name "mupen64plus-video-rice")
839 (version "2.5")
840 (source
841 (origin
842 (method url-fetch)
843 (uri (string-append
844 "https://github.com/mupen64plus/mupen64plus-video-rice/archive/"
845 version ".tar.gz"))
846 (file-name (string-append name "-" version ".tar.gz"))
847 (sha256
848 (base32 "0rd2scjmh285w61aj3mgx71whg5rqrjbry3cdgicczrnyvf8wdvk"))))
849 (build-system gnu-build-system)
850 (native-inputs
851 `(("pkg-config" ,pkg-config)
852 ("which" ,which)))
853 (inputs
854 `(("libpng" ,libpng)
855 ("mesa" ,mesa)
856 ("mupen64plus-core" ,mupen64plus-core)
857 ("sdl2" ,sdl2)))
858 (arguments
859 '(#:phases
860 (modify-phases %standard-phases
861 ;; The mupen64plus build system has no configure phase.
862 (delete 'configure)
863 ;; Makefile is in a subdirectory.
864 (add-before
865 'build 'cd-to-project-dir
866 (lambda _
867 (chdir "projects/unix"))))
868 #:make-flags
869 (let ((out (assoc-ref %outputs "out"))
870 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
871 (list "all"
872 (string-append "PREFIX=" out)
873 (string-append "APIDIR=" m64p "/include/mupen64plus")))
874 ;; There are no tests.
875 #:tests? #f))
876 (home-page "http://www.mupen64plus.org/")
877 (synopsis "Mupen64Plus Rice Video plugin")
878 (description
879 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
880which is capable of accurately playing many games. This package contains the
881Rice Video plugin.")
882 (license license:gpl2+)))
883
884(define-public mupen64plus-video-z64
885 (package
886 (name "mupen64plus-video-z64")
887 (version "2.0.0")
888 (source
889 (origin
890 (method url-fetch)
891 (uri (string-append
892 "https://github.com/mupen64plus/mupen64plus-video-z64/archive/"
893 version ".tar.gz"))
894 (file-name (string-append name "-" version ".tar.gz"))
895 (sha256
fdb61400
MR
896 (base32 "1x7wsjs5gx2iwx20p4cjcbf696zsjlh31qxmghwv0ifrq8x58s1b"))
897 (patches (search-patches "mupen64plus-video-z64-glew-correct-path.patch"))))
9af704c5
RH
898 (build-system gnu-build-system)
899 (native-inputs
900 `(("pkg-config" ,pkg-config)
901 ("which" ,which)))
902 (inputs
903 `(("glew" ,glew)
904 ("mupen64plus-core" ,mupen64plus-core)
905 ("sdl2" ,sdl2)))
906 (arguments
907 '(#:phases
908 (modify-phases %standard-phases
909 ;; The mupen64plus build system has no configure phase.
910 (delete 'configure)
911 ;; Makefile is in a subdirectory.
912 (add-before
913 'build 'cd-to-project-dir
914 (lambda _
915 (chdir "projects/unix")))
916 ;; XXX Should be unnecessary with the next release.
917 (add-before
918 'build 'use-sdl2
919 (lambda _
920 (substitute* "Makefile"
921 (("SDL_CONFIG = (.*)sdl-config" all prefix)
922 (string-append "SDL_CONFIG = " prefix "sdl2-config"))))))
923 #:make-flags
924 (let ((out (assoc-ref %outputs "out"))
925 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
926 (list "all"
927 (string-append "PREFIX=" out)
928 (string-append "APIDIR=" m64p "/include/mupen64plus")))
929 ;; There are no tests.
930 #:tests? #f))
931 (home-page "http://www.mupen64plus.org/")
932 (synopsis "Mupen64Plus Z64 video plugin")
933 (description
934 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
935which is capable of accurately playing many games. This package contains the
936Z64 video plugin.")
937 (license license:gpl2+)))
938
939(define-public mupen64plus-ui-console
940 (package
941 (name "mupen64plus-ui-console")
942 (version "2.5")
943 (source
944 (origin
945 (method url-fetch)
946 (uri (string-append
947 "https://github.com/mupen64plus/mupen64plus-ui-console/archive/"
948 version ".tar.gz"))
949 (file-name (string-append name "-" version ".tar.gz"))
950 (sha256
951 (base32 "04qkpd8ic7xsgnqz7spl00wxdygf79m7d1k8rabbygjk5lg6p8z2"))
952 (patches (search-patches "mupen64plus-ui-console-notice.patch"))))
953 (build-system gnu-build-system)
954 (native-inputs
955 `(("pkg-config" ,pkg-config)
956 ("which" ,which)))
957 (inputs
958 `(("sdl2" ,sdl2)))
959 ;; Mupen64Plus supports a single data directory and a single plugin
960 ;; directory in its configuration, yet we need data and plugin files from
961 ;; a variety of packages. The best way to deal with this is to install
962 ;; all packages from which data and plugin files are needed into one's
963 ;; profile, and point the configuration there. Hence, propagate the most
964 ;; important packages here to save the user from the bother. The patch
965 ;; mupen64plus-ui-console-notice also gives users instructions on what
966 ;; they need to do in order to point the configuration to their profile.
967 (propagated-inputs
968 `(("mupen64plus-core" ,mupen64plus-core)
969 ("mupen64plus-audio-sdl" ,mupen64plus-audio-sdl)
970 ("mupen64plus-input-sdl" ,mupen64plus-input-sdl)
971 ("mupen64plus-rsp-hle" ,mupen64plus-rsp-hle)
972 ("mupen64plus-video-glide64" ,mupen64plus-video-glide64)
973 ("mupen64plus-video-glide64mk2" ,mupen64plus-video-glide64mk2)
974 ("mupen64plus-video-rice" ,mupen64plus-video-rice)))
975 (arguments
976 '(#:phases
977 (modify-phases %standard-phases
978 ;; The mupen64plus build system has no configure phase.
979 (delete 'configure)
980 ;; Makefile is in a subdirectory.
981 (add-before
982 'build 'cd-to-project-dir
983 (lambda _
984 (chdir "projects/unix"))))
985 #:make-flags
986 (let ((out (assoc-ref %outputs "out"))
987 (m64p (assoc-ref %build-inputs "mupen64plus-core")))
988 (list "all"
989 (string-append "PREFIX=" out)
990 (string-append "APIDIR=" m64p "/include/mupen64plus")
991 ;; Trailing slash matters here.
992 (string-append "COREDIR=" m64p "/lib/")))
993 ;; There are no tests.
994 #:tests? #f))
995 (home-page "http://www.mupen64plus.org/")
996 (synopsis "Mupen64Plus SDL input plugin")
997 (description
998 "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator
999which is capable of accurately playing many games. This package contains the
1000command line user interface. Installing this package is the easiest way
1001towards a working Mupen64Plus for casual users.")
1002 (license license:gpl2+)))
1003
1004(define-public nestopia-ue
1005 (package
1006 (name "nestopia-ue")
9d39c300 1007 (version "1.48")
9af704c5
RH
1008 (source (origin
1009 (method url-fetch)
1010 (uri (string-append
1011 "https://github.com/rdanbrook/nestopia/archive/"
1012 version ".tar.gz"))
1013 (file-name (string-append name "-" version ".tar.gz"))
1014 (sha256
1015 (base32
9d39c300 1016 "184y05z4k4a4m4022niy625kan0rklh8gcxyynxli1fss2sjjrpv"))
9af704c5
RH
1017 (modules '((guix build utils)))
1018 (snippet
1019 '(begin
1020 ;; We don't need libretro for the GNU/Linux build.
1021 (delete-file-recursively "libretro")
6cbee49d 1022 #t))))
9d39c300 1023 (build-system cmake-build-system)
9af704c5
RH
1024 (native-inputs
1025 `(("pkg-config" ,pkg-config)))
1026 (inputs
1027 `(("ao" ,ao)
9af704c5
RH
1028 ("gtk+" ,gtk+)
1029 ("libarchive" ,libarchive)
9d39c300 1030 ("libepoxy" ,libepoxy)
9af704c5
RH
1031 ("sdl2" ,sdl2)
1032 ("zlib" ,zlib)))
1033 (arguments
1034 '(#:phases
1035 (modify-phases %standard-phases
9d39c300
KK
1036 ;; This fixes the file chooser crash that happens with GTK 3.
1037 (add-after 'install 'wrap-program
1038 (lambda* (#:key inputs outputs #:allow-other-keys)
1039 (let* ((out (assoc-ref outputs "out"))
1040 (nestopia (string-append out "/bin/nestopia"))
1041 (gtk (assoc-ref inputs "gtk+"))
1042 (gtk-share (string-append gtk "/share")))
1043 (wrap-program nestopia
1044 `("XDG_DATA_DIRS" ":" prefix (,gtk-share)))))))
9af704c5
RH
1045 ;; There are no tests.
1046 #:tests? #f))
1047 (home-page "http://0ldsk00l.ca/nestopia/")
1048 (synopsis "Nintendo Entertainment System (NES/Famicom) emulator")
1049 (description
1050 "Nestopia UE (Undead Edition) is a fork of the Nintendo Entertainment
1051System (NES/Famicom) emulator Nestopia, with enhancements from members of the
1052emulation community. It provides highly accurate emulation.")
1053 (license license:gpl2+)))
1054
1055(define-public retroarch
1056 (package
1057 (name "retroarch")
0b6678cd 1058 (version "1.7.4")
9af704c5
RH
1059 (source
1060 (origin
1061 (method url-fetch)
1062 (uri (string-append "https://github.com/libretro/RetroArch/archive/v"
1063 version ".tar.gz"))
1064 (file-name (string-append name "-" version ".tar.gz"))
1065 (sha256
0b6678cd 1066 (base32 "0h6y2hpjg4b470jvn9ghwp0k3a527sbb6xhia17frlm9w9v5028w"))))
9af704c5
RH
1067 (build-system gnu-build-system)
1068 (arguments
1069 '(#:tests? #f ; no tests
1070 #:phases
1071 (modify-phases %standard-phases
1072 (replace 'configure
1073 (lambda* (#:key inputs outputs #:allow-other-keys)
1074 (let* ((out (assoc-ref outputs "out"))
1075 (etc (string-append out "/etc"))
e6fcf903 1076 (vulkan (assoc-ref inputs "vulkan-loader")))
9af704c5
RH
1077 ;; Hard-code the path to libvulkan.so.
1078 (substitute* "gfx/common/vulkan_common.c"
1079 (("libvulkan.so") (string-append vulkan "/lib/libvulkan.so")))
1080 (substitute* "qb/qb.libs.sh"
1081 (("/bin/true") (which "true")))
fade67ab
EF
1082 ;; Use shared zlib.
1083 (substitute* '("libretro-common/file/archive_file_zlib.c"
1084 "libretro-common/streams/trans_stream_zlib.c"
1085 "network/httpserver/httpserver.c")
1086 (("<compat/zlib.h>") "<zlib.h>"))
9af704c5
RH
1087 ;; The configure script does not yet accept the extra arguments
1088 ;; (like ‘CONFIG_SHELL=’) passed by the default configure phase.
1089 (zero? (system*
1090 "./configure"
1091 (string-append "--prefix=" out)
1092 (string-append "--global-config-dir=" etc)))))))))
1093 (inputs
1094 `(("alsa-lib" ,alsa-lib)
1095 ("ffmpeg" ,ffmpeg)
1096 ("freetype" ,freetype)
1097 ("libxinerama" ,libxinerama)
1098 ("libxkbcommon" ,libxkbcommon)
1099 ("libxml2" ,libxml2)
1100 ("libxv" ,libxv)
1101 ("mesa" ,mesa)
1102 ("openal" ,openal)
1103 ("pulseaudio" ,pulseaudio)
1104 ("python" ,python)
76b7d8fd 1105 ("qtbase" ,qtbase)
9af704c5
RH
1106 ("sdl" ,sdl2)
1107 ("udev" ,eudev)
e6fcf903 1108 ("vulkan-loader" ,vulkan-loader)
c695fb76 1109 ("wayland" ,wayland)
9af704c5
RH
1110 ("zlib" ,zlib)))
1111 (native-inputs
1112 `(("pkg-config" ,pkg-config)
1113 ("which" ,which)))
1114 (home-page "https://www.libretro.com/")
1115 (synopsis "Reference frontend for the libretro API")
1116 (description
1117 "Libretro is a simple but powerful development interface that allows for
1118the easy creation of emulators, games and multimedia applications that can plug
1119straight into any libretro-compatible frontend. RetroArch is the official
1120reference frontend for the libretro API, currently used by most as a modular
1121multi-system game/emulator system.")
1122 (license license:gpl3+)))
4c40ed9d
NG
1123
1124(define-public scummvm
1125 (package
1126 (name "scummvm")
1127 (version "2.0.0")
1128 (source
1129 (origin
1130 (method url-fetch)
1131 (uri (string-append "http://www.scummvm.org/frs/scummvm/" version
1132 "/scummvm-" version ".tar.xz"))
1133 (sha256
1134 (base32
1135 "0q6aiw97wsrf8cjw9vjilzhqqsr2rw2lll99s8i5i9svan6l314p"))))
1136 (build-system gnu-build-system)
1137 (arguments
1138 `(#:tests? #f ;require "git"
1139 #:configure-flags (list "--enable-release") ;for optimizations
1140 #:phases
1141 (modify-phases %standard-phases
1142 (replace 'configure
1143 ;; configure does not work followed by both "SHELL=..." and
1144 ;; "CONFIG_SHELL=..."; set environment variables instead
1145 (lambda* (#:key outputs configure-flags #:allow-other-keys)
1146 (let* ((out (assoc-ref outputs "out"))
1147 (bash (which "bash"))
1148 (flags `(,(string-append "--prefix=" out)
1149 ,@configure-flags)))
1150 (setenv "SHELL" bash)
1151 (setenv "CONFIG_SHELL" bash)
1152 (apply invoke "./configure" flags)))))))
1153 (native-inputs
1154 `(("pkg-config" ,pkg-config)))
1155 (inputs
1156 `(("alsa-lib" ,alsa-lib)
1157 ("faad2" ,faad2)
1158 ("fluidsynth" ,fluidsynth)
1159 ("freetype" ,freetype)
1160 ("libflac" ,flac)
1161 ("libjpeg-turbo" ,libjpeg-turbo)
1162 ("libmad" ,libmad)
1163 ("libmpeg2" ,libmpeg2)
1164 ("libogg" ,libogg)
1165 ("libpng" ,libpng)
1166 ("libtheora" ,libtheora)
1167 ("libvorbis" ,libvorbis)
1168 ("nasm" ,nasm)
1169 ("sdl2" ,sdl2)
1170 ("zlib" ,zlib)))
1171 (home-page "https://www.scummvm.org/")
1172 (synopsis "Engine for several graphical adventure games")
1173 (description "ScummVM is a program which allows you to run certain
1174classic graphical point-and-click adventure games, provided you
1175already have their data files. The clever part about this: ScummVM
1176just replaces the executables shipped with the games, allowing you to
1177play them on systems for which they were never designed!")
1178 (license license:gpl2+)))
c8b2fd28
NG
1179
1180(define-public mame
1181 (package
1182 (name "mame")
be4c63f4 1183 (version "0.201")
c8b2fd28
NG
1184 (source
1185 (origin
1186 (method git-fetch)
1187 (uri (git-reference
1188 (url "https://github.com/mamedev/mame.git")
1189 (commit (apply string-append "mame" (string-split version #\.)))))
1190 (file-name (git-file-name name version))
1191 (sha256
1192 (base32
be4c63f4 1193 "00whiig4ld3d4fkl34q48vlf28ygvvp5g7fp0rb5n31ymhl4kajk"))
c8b2fd28
NG
1194 (modules '((guix build utils)))
1195 (snippet
1196 ;; Remove bundled libraries.
1197 '(begin
1198 (with-directory-excursion "3rdparty"
1199 (for-each delete-file-recursively
1200 '("asio" "expat" "glm" "libflac" "libjpeg" "lua"
1201 "portaudio" "portmidi" "pugixml" "rapidjson" "SDL2"
1202 "SDL2-override" "sqlite3" "utf8proc" "zlib")))
1203 #t))))
1204 (build-system gnu-build-system)
1205 (arguments
1206 `(#:make-flags
1207 (cons*
1208 (string-append "QT_HOME=" (assoc-ref %build-inputs "qtbase"))
1209 (string-append "SDL_INI_PATH="
1210 (assoc-ref %outputs "out")
1211 "/share/mame/ini")
1212 (map (lambda (lib)
1213 (string-append "USE_SYSTEM_LIB_" (string-upcase lib) "=1"))
1214 '("asio" "expat" "flac" "glm" "jpeg" "lua" "portaudio" "portmidi"
1215 "pugixml" "rapidjson" "sqlite3" "utf8proc" "zlib")))
1216 #:tests? #f ;no test in regular release
1217 #:phases
1218 (modify-phases %standard-phases
1219 (delete 'configure)
1220 (add-after 'build 'build-documentation
1221 (lambda _ (invoke "make" "-C" "docs" "man" "info")))
1222 (replace 'install
1223 ;; Upstream does not provide an installation phase.
1224 (lambda* (#:key outputs #:allow-other-keys)
1225 (let* ((out (assoc-ref outputs "out"))
1226 (share (string-append out "/share/mame")))
1227 ;; Install data.
1228 (for-each (lambda (dir)
1229 (copy-recursively dir (string-append share "/" dir)))
1230 '("artwork" "bgfx" "ctrlr" "hash" "ini" "language"
1231 "plugins" "samples"))
1232 (let ((keymaps (string-append share "/keymaps")))
1233 (for-each (lambda (file) (install-file file keymaps))
1234 (find-files "keymaps" ".*LINUX\\.map")))
1235 (let ((fonts (string-append share "/fonts")))
1236 (install-file "uismall.bdf" fonts))
6921e95a
EF
1237 (when (file-exists? "mame64")
1238 (rename-file "mame64" "mame"))
c8b2fd28
NG
1239 (install-file "mame" (string-append out "/bin")))
1240 #t))
1241 (add-after 'install 'install-documentation
1242 (lambda* (#:key outputs #:allow-other-keys)
1243 (let* ((out (assoc-ref outputs "out"))
1244 (man (string-append out "/share/man/man1"))
1245 (info (string-append out "/share/info")))
1246 (install-file "docs/build/man/MAME.1" man)
1247 (install-file "docs/build/texinfo/MAME.info" info))
1248 #t))
1249 (add-after 'install 'install-ini-file
1250 ;; Generate an ini file so as to set some directories (e.g., roms)
1251 ;; to a writable location, i.e., "$HOME/.mame/" and "$HOME/mame/".
1252 ;;
1253 ;; XXX: We need to insert absolute references to the store. It can
1254 ;; be an issue if they leak into user's home directory, e.g., with
1255 ;; "mame -createconfig" and the package is later GC'ed.
1256 (lambda* (#:key outputs #:allow-other-keys)
1257 (let* ((out (assoc-ref outputs "out"))
1258 (share (string-append out "/share/mame"))
1259 (ini (string-append share "/ini")))
1260 (with-output-to-file (string-append ini "/mame.ini")
1261 (lambda _
1262 (format #t
1263 "inipath $HOME/.mame;~a/ini~@
1264 homepath $HOME/mame~@
1265 rompath $HOME/mame/roms~@
1266 samplepath $HOME/mame/samples;~a/samples~@
1267 cheatpath $HOME/mame/cheat~@
1268 artpath $HOME/mame/artwork;~a/artwork~@
1269 crosshairpath $HOME/mame/crosshair~@
1270 snapshot_directory $HOME/mame/snapshots~@
1271 hashpath ~a/hash~@
1272 fontpath $HOME/mame/fonts;~a/fonts~@
1273 ctrlrpath $HOME/mame/ctrlr;~a/ctrlr~@
1274 bgfx_path ~a/bgfx~@
1275 pluginspath $HOME/mame/plugins;~a/plugins~@
1276 languagepath ~a/language~@
1277 cfg_directory $HOME/.mame/cfg~@
1278 nvram_directory $HOME/.mame/nvram~@
1279 input_directory $HOME/.mame/inp~@
1280 state_directory $HOME/.mame/sta~@
1281 diff_directory $HOME/.mame/diff~@
1282 comment_directory $HOME/.mame/comments~%"
1283 share share share share share share share share
1284 share)))
1285 (with-output-to-file (string-append ini "/ui.ini")
1286 (lambda _
1287 (format #t
1288 "historypath $HOME/mame/history~@
1289 categorypath $HOME/mame/folders~@
1290 cabinets_directory $HOME/mame/cabinets~@
1291 cpanels_directory $HOME/mame/cpanel~@
1292 pcbs_directory $HOME/mame/pcb~@
1293 flyers_directory $HOME/mame/flyers~@
1294 titles_directory $HOME/mame/titles~@
1295 ends_directory $HOME/mame/ends~@
1296 marquees_directory $HOME/mame/marquees~@
1297 artwork_preview_directory $HOME/mame/artpreview~@
1298 bosses_directory $HOME/mame/bosses~@
1299 logos_directory $HOME/mame/logo~@
1300 scores_directory $HOME/mame/scores~@
1301 versus_directory $HOME/mame/versus~@
1302 gameover_directory $HOME/mame/gameover~@
1303 howto_directory $HOME/mame/howto~@
1304 select_directory $HOME/mame/select~@
1305 icons_directory $HOME/mame/icons~@
1306 covers_directory $HOME/mame/covers~@
1307 ui_path $HOME/.mame/ui~%")))
1308 #t)))
1309 (add-after 'install 'install-desktop-file
1310 (lambda* (#:key outputs #:allow-other-keys)
1311 (let* ((out (assoc-ref outputs "out"))
1312 (desktop (string-append out "/share/applications"))
1313 (executable (string-append out "/bin/mame")))
1314 (mkdir-p desktop)
1315 (with-output-to-file (string-append desktop "/mame.desktop")
1316 (lambda _
1317 (format #t
1318 "[Desktop Entry]~@
1319 Name=mame~@
1320 Comment=Multi-purpose emulation framework~@
1321 Exec=~a~@
1322 TryExec=~@*~a~@
1323 Terminal=false~@
1324 Type=Application~@
1325 Categories=Game;Emulator;~@
1326 Keywords=Game;Emulator;Arcade;~%"
1327 executable)))
1328 #t))))))
1329 (native-inputs
1330 `(("pkg-config" ,pkg-config)
1331 ("pugixml" ,pugixml)
1332 ("python-sphinx" ,python-sphinx)
1333 ("texinfo" ,texinfo)))
1334 (inputs
1335 `(("alsa-lib" ,alsa-lib)
1336 ("asio" ,asio)
1337 ("expat" ,expat)
1338 ("flac" ,flac)
1339 ("fontconfig" ,fontconfig)
1340 ("glm" ,glm)
1341 ("libjpeg" ,libjpeg-8) ;jpeg_read_header argument error in libjpeg-9
1342 ("libxinerama" ,libxinerama)
1343 ("lua" ,lua)
1344 ("portaudio" ,portaudio)
1345 ("portmidi" ,portmidi)
1346 ("python-wrapper" ,python-wrapper)
1347 ("qtbase" ,qtbase)
1348 ("rapidjson" ,rapidjson)
1349 ("sdl" ,(sdl-union (list sdl2 sdl2-ttf)))
1350 ("sqlite" ,sqlite)
1351 ("utf8proc" ,utf8proc)
1352 ("zlib" ,zlib)))
1353 (home-page "http://mamedev.org/")
1354 (synopsis "Multi-purpose emulation framework")
1355 (description "MAME's purpose is to preserve decades of software
1356history. As electronic technology continues to rush forward, MAME
1357prevents this important @emph{vintage} software from being lost and
1358forgotten. This is achieved by documenting the hardware and how it
1359functions. The source code to MAME serves as this documentation.")
1360 ;; The MAME project as a whole is distributed under the terms of GPL2+.
1361 ;; However, over 90% of the files are under Expat license. Also, artwork,
1362 ;; keymaps, languages and samples are under CC0.
1363 (license (list license:gpl2+ license:expat license:cc0))))