mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: bsnes-hd: Update to 10.6-0.0bb7b86.
* gnu/packages/emulators.scm (bsnes-hd): Update to 10.6-0.0bb7b86. [#:make-flags]: Add hiro=gtk3. Relates-to: #1401 Change-Id: I95ff68eb56dd63cf5b75ff3700ae1b765302ff92
This commit is contained in:
parent
4b5a4de167
commit
729674f8d2
1 changed files with 30 additions and 22 deletions
|
@ -3530,27 +3530,35 @@ performance, features, and ease of use.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public bsnes-hd
|
(define-public bsnes-hd
|
||||||
(package
|
;; Use a git snapshot of the master branch, which includes unreleased build
|
||||||
(inherit bsnes)
|
;; fixes.
|
||||||
(name "bsnes-hd")
|
(let ((commit "0bb7b8645e22ea2476cabd58f32e987b14686601")
|
||||||
;; As of 10.6, there only ever was beta releases -- treat these as the
|
(revision "0"))
|
||||||
;; stable releases for now.
|
(package
|
||||||
(version "10.6")
|
(inherit bsnes)
|
||||||
(source (origin
|
(name "bsnes-hd")
|
||||||
(method git-fetch)
|
;; As of 10.6, there only ever was beta releases -- treat these as the
|
||||||
(uri (git-reference
|
;; stable releases for now.
|
||||||
(url "https://github.com/DerKoun/bsnes-hd")
|
(version (git-version "10.6" revision commit))
|
||||||
(commit (string-append
|
(source (origin
|
||||||
"beta_"
|
(method git-fetch)
|
||||||
(string-replace-substring version "." "_")))))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/DerKoun/bsnes-hd")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"0f3cd89fd0lqskzj98cc1pzmdbscq0psdjckp86w94rbchx7iw4h"))))
|
(sha256
|
||||||
(build-system gnu-build-system)
|
(base32
|
||||||
(home-page "https://github.com/DerKoun/bsnes-hd/")
|
"0z9wqmx351f9160jsmprznqw5sx5lslyisbr41b9igzsr5j94db3"))))
|
||||||
(synopsis "Fork of bsnes with added HD video features")
|
(build-system gnu-build-system)
|
||||||
(description "bsnes-hd (called ``HD Mode 7 mod, for bsnes'' in early
|
(arguments (substitute-keyword-arguments (package-arguments bsnes)
|
||||||
|
((#:make-flags flags ''())
|
||||||
|
;; This is needed because the modified bsnes code that
|
||||||
|
;; bsnes-hd uses is based on an older copy that still
|
||||||
|
;; defaults to gtk2.
|
||||||
|
#~(cons "hiro=gtk3" #$flags))))
|
||||||
|
(home-page "https://github.com/DerKoun/bsnes-hd/")
|
||||||
|
(synopsis "Fork of bsnes with added HD video features")
|
||||||
|
(description "bsnes-hd (called ``HD Mode 7 mod, for bsnes'' in early
|
||||||
betas) is a fork of bsnes (the great SNES emulator by Near) that adds HD video
|
betas) is a fork of bsnes (the great SNES emulator by Near) that adds HD video
|
||||||
features, such as:
|
features, such as:
|
||||||
@table @asis
|
@table @asis
|
||||||
|
@ -3567,7 +3575,7 @@ Color calculation are done at true color instead of the SNES color depth (3x8
|
||||||
instead of 3x5 bit). With the optional line color smoothing color ``steps''
|
instead of 3x5 bit). With the optional line color smoothing color ``steps''
|
||||||
turn into actual gradients (without influencing the sharpness of the artwork).
|
turn into actual gradients (without influencing the sharpness of the artwork).
|
||||||
@end table")
|
@end table")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public libretro-bsnes-hd
|
(define-public libretro-bsnes-hd
|
||||||
(package/inherit bsnes-hd
|
(package/inherit bsnes-hd
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue