mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add mgba-for-dolphin.
* gnu/packages/emulators.scm (mgba-for-dolphin): New variable. Change-Id: I8ff0a21cc91d79f010b38d3f2d675e3cfad2761a
This commit is contained in:
parent
a0f061d1b6
commit
8ac4fa47d8
1 changed files with 28 additions and 0 deletions
|
@ -973,6 +973,34 @@ and Game Boy Color games")
|
|||
license:lgpl2.1+ ;blip_buf bundled library
|
||||
license:bsd-3)))) ;inih bundled library
|
||||
|
||||
(define-public mgba-for-dolphin
|
||||
;; The commit should match that of the mgba git submodule in dolphin (see:
|
||||
;; <https://github.com/dolphin-emu/dolphin/tree/master/Externals/mGBA>).
|
||||
(let ((commit "8739b22fbc90fdf0b4f6612ef9c0520f0ba44a51")
|
||||
(revision "0"))
|
||||
(hidden-package
|
||||
(package
|
||||
(inherit mgba)
|
||||
(name "mgba-for-dolphin")
|
||||
(version (git-version "0.9.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(inherit (package-source mgba))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/mgba-emu/mgba")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1bbcsikgcycf3cp9ciicg4yckjyamdfvgk4fgw079la59q8aw13q"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments mgba)
|
||||
((#:configure-flags flags ''())
|
||||
;; Relax error checks to avoid a build failure with GCC 14.
|
||||
#~(cons "-DCMAKE_C_FLAGS=-Wno-error=incompatible-pointer-types"
|
||||
#$flags))))))))
|
||||
|
||||
(define-public sameboy
|
||||
(package
|
||||
(name "sameboy")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue