diff options
author | Rutger Helling <rhelling@mykolab.com> | 2017-08-23 20:11:20 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2017-08-23 20:13:41 +0800 |
commit | 56cdca95372f8c64472126f6d56e246b33ecc8c8 (patch) | |
tree | 17e8994ca6430a637287110dd2e64d0b38e736e7 | |
parent | 35e657017c79a57b76f445c2645893ebac50d943 (diff) | |
download | guix-56cdca95372f8c64472126f6d56e246b33ecc8c8.tar guix-56cdca95372f8c64472126f6d56e246b33ecc8c8.tar.gz |
gnu: retroarch: Update to 1.6.7.
* gnu/packages/games.scm (retroarch): Update to 1.6.7.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/games.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 7932e841c4..834d402949 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1343,15 +1343,15 @@ either by Infocom or created using the Inform compiler.") (define-public retroarch (package (name "retroarch") - (version "1.6.3") + (version "1.6.7") (source (origin (method url-fetch) - (uri (string-append "https://github.com/libretro/RetroArch/archive/" + (uri (string-append "https://github.com/libretro/RetroArch/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0a0w2sjizjs20376h7j1gfi0qccr8mhkl1cm6hi0c17hy1493l6d")))) + (base32 "13vp5skf95a4fla3dwdk2v48dgnmrvimvp9fgpr1vppb7wfjhbr1")))) (build-system gnu-build-system) (arguments '(#:tests? #f ; no tests |