gnu: mgba: Update to 0.8.1.
* gnu/packages/emulators.scm (mgba): Update to 0.8.1. [inputs, native-inputs]: Move qttools to native-inputs as per guix lint (guix size says it's not used at runtime). [license]: Add expat for src/third-party/discord-rpc.
This commit is contained in:
parent
7da1e8f9b4
commit
1d0e8ec19e
1 changed files with 7 additions and 7 deletions
|
@ -419,7 +419,7 @@ Super Game Boy, BS-X Satellaview, and Sufami Turbo.")
|
||||||
(define-public mgba
|
(define-public mgba
|
||||||
(package
|
(package
|
||||||
(name "mgba")
|
(name "mgba")
|
||||||
(version "0.8.0")
|
(version "0.8.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -428,7 +428,7 @@ Super Game Boy, BS-X Satellaview, and Sufami Turbo.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0m3rgcdv32ms98j7rrmk2hphvn462bwsd6xfz2ssy05398pj4ljh"))
|
(base32 "1if82mfaak3696w5d5yshynpzywrxgvg3ifdfi2rwlpvq1gpd429"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Make sure we don't use the bundled software.
|
;; Make sure we don't use the bundled software.
|
||||||
|
@ -445,7 +445,8 @@ Super Game Boy, BS-X Satellaview, and Sufami Turbo.")
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "-DUSE_LZMA=OFF" ;do not use bundled LZMA
|
(list "-DUSE_LZMA=OFF" ;do not use bundled LZMA
|
||||||
"-DUSE_LIBZIP=OFF"))) ;use "zlib" instead
|
"-DUSE_LIBZIP=OFF"))) ;use "zlib" instead
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
(native-inputs `(("pkg-config" ,pkg-config)
|
||||||
|
("qttools" ,qttools)))
|
||||||
(inputs `(("ffmpeg" ,ffmpeg)
|
(inputs `(("ffmpeg" ,ffmpeg)
|
||||||
("imagemagick" ,imagemagick)
|
("imagemagick" ,imagemagick)
|
||||||
("libedit" ,libedit)
|
("libedit" ,libedit)
|
||||||
|
@ -457,7 +458,6 @@ Super Game Boy, BS-X Satellaview, and Sufami Turbo.")
|
||||||
("ncurses" ,ncurses)
|
("ncurses" ,ncurses)
|
||||||
("qtbase" ,qtbase)
|
("qtbase" ,qtbase)
|
||||||
("qtmultimedia" ,qtmultimedia)
|
("qtmultimedia" ,qtmultimedia)
|
||||||
("qttools" ,qttools)
|
|
||||||
("sdl2" ,sdl2)
|
("sdl2" ,sdl2)
|
||||||
("sqlite" ,sqlite)
|
("sqlite" ,sqlite)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
@ -468,9 +468,9 @@ Super Game Boy, BS-X Satellaview, and Sufami Turbo.")
|
||||||
faster and more accurate than many existing Game Boy Advance emulators, as
|
faster and more accurate than many existing Game Boy Advance emulators, as
|
||||||
well as adding features that other emulators lack. It also supports Game Boy
|
well as adding features that other emulators lack. It also supports Game Boy
|
||||||
and Game Boy Color games.")
|
and Game Boy Color games.")
|
||||||
;; Code is mainly MPL 2.0. "blip_buf.c" is LGPL 2.1+ and "inih.c" is
|
;; Code is mainly MPL 2.0. "blip_buf.c" is LGPL 2.1+, "inih.c" is
|
||||||
;; BSD-3.
|
;; BSD-3, and "discord-rpc" is Expat.
|
||||||
(license (list license:mpl2.0 license:lgpl2.1+ license:bsd-3))))
|
(license (list license:mpl2.0 license:lgpl2.1+ license:bsd-3 license:expat))))
|
||||||
|
|
||||||
(define-public sameboy
|
(define-public sameboy
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue