diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-09-19 20:37:36 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-05 22:49:56 +0900 |
| commit | a7281abc64de0a7c88e6a04b2558765e5c92b2ac (patch) | |
| tree | 774c1da74888d0d3c3e6ff314dee1f30f564c4d6 /gnu/packages/emulators.scm | |
| parent | 1ca236a02af88954c192b6858a65e454be307eaa (diff) | |
gnu: Add jg-api.
* gnu/packages/emulators.scm (jg-api): New variable.
Change-Id: I2cd2086560f8353f8260209c4ee0f117c3615917
Diffstat (limited to 'gnu/packages/emulators.scm')
| -rw-r--r-- | gnu/packages/emulators.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 50a7b67121b..6368ccbe43d 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm | |||
| @@ -2260,6 +2260,32 @@ from various forks of Gens, and improved platform portability.") | |||
| 2260 | performance, features, and ease of use.") | 2260 | performance, features, and ease of use.") |
| 2261 | (license license:gpl3))) | 2261 | (license license:gpl3))) |
| 2262 | 2262 | ||
| 2263 | (define-public jg-api | ||
| 2264 | (package | ||
| 2265 | (name "jg-api") | ||
| 2266 | (version "1.0.0") | ||
| 2267 | (source (origin | ||
| 2268 | (method git-fetch) | ||
| 2269 | (uri (git-reference | ||
| 2270 | (url "https://gitlab.com/jgemu/jg") | ||
| 2271 | (commit version))) | ||
| 2272 | (file-name (git-file-name name version)) | ||
| 2273 | (sha256 | ||
| 2274 | (base32 | ||
| 2275 | "0117cvfvzhrm9fxnryhbnf9r0f8ij4ahhfqiqp5yv11bz2wcyhqh")))) | ||
| 2276 | (build-system gnu-build-system) | ||
| 2277 | (arguments | ||
| 2278 | (list #:tests? #f ;no test suite | ||
| 2279 | #:make-flags #~(list (string-append "PREFIX=" #$output)) | ||
| 2280 | #:phases #~(modify-phases %standard-phases | ||
| 2281 | (delete 'configure)))) ;no configure phase | ||
| 2282 | (home-page "https://gitlab.com/jgemu/jg") | ||
| 2283 | (synopsis "Emulators Plugin API") | ||
| 2284 | (description "This package provides the Jolly Good API C and C++ headers. | ||
| 2285 | The Jolly Good API is a shared object or plugin @acronym{API, Application | ||
| 2286 | Programming Interface} for emulators.") | ||
| 2287 | (license license:zlib))) | ||
| 2288 | |||
| 2263 | (define-public zsnes | 2289 | (define-public zsnes |
| 2264 | (package | 2290 | (package |
| 2265 | (name "zsnes") | 2291 | (name "zsnes") |
