diff options
author | Solene Rapenne via Guix-patches via <guix-patches@gnu.org> | 2021-06-22 21:48:50 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-06-22 23:44:05 +0200 |
commit | 4605ea1a780ff5889b7273d27a255294d7a08327 (patch) | |
tree | 865399bc5e24ab341f356b65dbe9d7515ab3e66e /gnu | |
parent | 35ae64b3a342de82d7bf1887dbd204aee5d5615e (diff) | |
download | guix-4605ea1a780ff5889b7273d27a255294d7a08327.tar.gz |
gnu: mednafen: Update to 1.27.1.
* gnu/packages/emulators.scm (mednafen): Update to 1.27.1. [inputs]: Add flac. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emulators.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index ec8d3d21d6..9091ef931d 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -523,14 +523,14 @@ V2.") (define-public mednafen (package (name "mednafen") - (version "1.26.1") + (version "1.27.1") (source (origin (method url-fetch) (uri (string-append "https://mednafen.github.io/releases/files/" "mednafen-" version ".tar.xz")) (sha256 - (base32 "1x7xhxjhwsdbak8l0iyb497f043xkhibk73w96xck4j2bk10fac4")))) + (base32 "1ysmb56wzr17ki6f1b486r2dzjr11igd021qb4r3437l68prpa7k")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -541,6 +541,7 @@ V2.") `(("pkg-config" ,pkg-config))) (inputs `(("alsa" ,alsa-lib) + ("flac" ,flac) ;; ("libmpcdec" ,libmpcdec) FIXME: not recognized. ("libsndfile" ,libsndfile) ("lzo" ,lzo) |