diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-09-26 08:37:07 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-05 22:50:09 +0900 |
commit | afdb5af46b18ba784f9cf0f946256082a24c593c (patch) | |
tree | e1c06163431c1b6f1b6653ac369aeb4bb8a4815c | |
parent | 80a16b179572680d145a9760658e9da1117ec3e8 (diff) | |
download | guix-afdb5af46b18ba784f9cf0f946256082a24c593c.tar.gz |
gnu: Add jg-cega.
* gnu/packages/emulators.scm (jg-cega): New variable. Change-Id: Ice3799d9aa4600006ac386fa40e80fb97b3018c8
-rw-r--r-- | gnu/packages/emulators.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 3a9eee9508..3030d44e1b 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -2459,6 +2459,42 @@ of the Nestopia emulator.") (license (list license:gpl2+ ;this project license:lgpl2.1+)))) ;nes_ntsc source files +(define-public jg-cega + (package + (name "jg-cega") + (version "0.6.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/jgemu/cega") + (commit version))) + (modules '((guix build utils))) + (snippet '(delete-file-recursively "deps/")) + (file-name (git-file-name name version)) + (sha256 + (base32 + "10qxfch08850zivxf4s1mhh0clx4h1cfn440acm6d7glb6wbv822")))) + (build-system gnu-build-system) + (arguments + (list #:tests? #f ;no test suite + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases #~(modify-phases %standard-phases + (delete 'configure)))) + (native-inputs (list jg-api pkg-config)) + (inputs (list speexdsp)) + (home-page "https://gitlab.com/jgemu/cega") + (synopsis "Jolly Good SG-1000, SMS, Game Gear, and Mega Drive/Genesis \ +emulator") + (description "Cega is a cycle accurate emulator for the Sega SG-1000, +Master System, and Game Gear written specifically for The Jolly Good API. +Mega Drive emulation is in an experimental state.") + (license (list license:mpl2.0 + license:expat ;src/emu2413, src/m68k + license:bsd-3 ;src/ymfm + license:zlib)))) ;src/z80.h + (define-public zsnes (package (name "zsnes") |