1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-09 06:18:52 +02:00

gnu: Add libretro-bsnes-hd.

* gnu/packages/emulators.scm (libretro-bsnes-hd): New variable.

Change-Id: Ibb99d4f027530d5dc812c1cdbc22ad9d972234e5
This commit is contained in:
Maxim Cournoyer
2025-01-13 23:48:49 +09:00
parent a1ca12fe85
commit 9f8d30298a
+15
View File
@@ -3282,6 +3282,21 @@ turn into actual gradients (without influencing the sharpness of the artwork).
@end table")
(license license:gpl3+)))
(define-public libretro-bsnes-hd
(package/inherit bsnes-hd
(name "libretro-bsnes-hd")
(arguments
(substitute-keyword-arguments (package-arguments bsnes-hd)
((#:make-flags flags ''())
#~(cons "target=libretro" #$flags))
((#:phases phases '%standard-phases)
#~(modify-phases #$phases
(replace 'install ;no install target
(lambda _
(install-file "bsnes/out/bsnes_hd_beta_libretro.so"
(string-append #$output "/lib/libretro/"))))))))
(synopsis "Libretro port of bsnes-hd")))
(define-public jg-api
(package
(name "jg-api")