mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add jg-api.
* gnu/packages/emulators.scm (jg-api): New variable. Change-Id: I2cd2086560f8353f8260209c4ee0f117c3615917
This commit is contained in:
parent
1ca236a02a
commit
a7281abc64
1 changed files with 26 additions and 0 deletions
|
@ -2260,6 +2260,32 @@ (define-public bsnes
|
|||
performance, features, and ease of use.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public jg-api
|
||||
(package
|
||||
(name "jg-api")
|
||||
(version "1.0.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/jgemu/jg")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0117cvfvzhrm9fxnryhbnf9r0f8ij4ahhfqiqp5yv11bz2wcyhqh"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f ;no test suite
|
||||
#:make-flags #~(list (string-append "PREFIX=" #$output))
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'configure)))) ;no configure phase
|
||||
(home-page "https://gitlab.com/jgemu/jg")
|
||||
(synopsis "Emulators Plugin API")
|
||||
(description "This package provides the Jolly Good API C and C++ headers.
|
||||
The Jolly Good API is a shared object or plugin @acronym{API, Application
|
||||
Programming Interface} for emulators.")
|
||||
(license license:zlib)))
|
||||
|
||||
(define-public zsnes
|
||||
(package
|
||||
(name "zsnes")
|
||||
|
|
Loading…
Reference in a new issue