[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73488] [PATCH games v3 6/7] gnu: Add jg-nestopia.
From: |
Maxim Cournoyer |
Subject: |
[bug#73488] [PATCH games v3 6/7] gnu: Add jg-nestopia. |
Date: |
Thu, 3 Oct 2024 16:25:44 +0900 |
* gnu/packages/emulators.scm (jg-nestopia): New variable.
Change-Id: I2f686f43a8339a124b9ef9640638ab182ecf7079
---
(no changes since v1)
gnu/packages/emulators.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index 4c1a705994..34e706188a 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -2429,6 +2429,39 @@ (define-public jg-bsnes
license:isc ;libco
license:lgpl2.1+))))
+(define-public jg-nestopia
+ (package
+ (name "jg-nestopia")
+ (version "1.52.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/jgemu/nestopia")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "19qg9hgh25aaym7b81v5g7165v4fyymas6dmzc4z867mzaphbn6s"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:tests? #f ;no test suite
+ #:make-flags
+ #~(list (string-append "AR=" #$(ar-for-target))
+ (string-append "CC=" #$(cc-for-target))
+ (string-append "CXX=" #$(cxx-for-target))
+ (string-append "PREFIX=" #$output))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure)))) ;no configure script
+ (native-inputs (list jg-api pkg-config))
+ (home-page "https://gitlab.com/jgemu/nestopia")
+ (synopsis "Jolly Good Fork of Nestopia")
+ (description "Nestopia JG is an emulator for the Nintendo Entertainment
+System/Famicom, including support for the Famicom Disk System and VS. System.
+Though originally a fork, Nestopia JG has become the de facto upstream branch
+of the Nestopia emulator.")
+ (license (list license:gpl2+ ;this project
+ license:lgpl2.1+)))) ;nes_ntsc source files
+
(define-public zsnes
(package
(name "zsnes")
--
2.46.0
- [bug#73488] [PATCH games v3 7/7] gnu: Add jg-cega., (continued)
- [bug#73488] [PATCH games v3 7/7] gnu: Add jg-cega., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 2/7] gnu: bsnes: Remove input labels and use gexps., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 4/7] gnu: Add jgrf., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 5/7] gnu: Add jg-bsnes., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 6/7] gnu: Add jg-nestopia.,
Maxim Cournoyer <=
- [bug#73488] [PATCH games v3 3/7] gnu: Add jg-api., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 1/7] teams: Register (gnu packages emulators) to games team., Maxim Cournoyer, 2024/10/03
- bug#73488: [PATCH games v3 0/7] Add Jolly Good and some of its emulators, Maxim Cournoyer, 2024/10/05