diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-01 18:07:18 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-01 21:11:49 +0200 |
commit | d9d1efe9713bbdf7c5130156114e0ce432af186e (patch) | |
tree | c66891a6a05e72f6c79ed2d61e3f9eb64a8144c9 | |
parent | fd02abd1df691a52dfefe298f4d8fa5994b538fd (diff) | |
download | guix-d9d1efe9713bbdf7c5130156114e0ce432af186e.tar guix-d9d1efe9713bbdf7c5130156114e0ce432af186e.tar.gz |
gnu: retroarch: Update to 1.9.2.
* gnu/packages/emulators.scm (retroarch): Update to 1.9.2.
[arguments]: Remove obsolete ‘--disable-git_version’ configure flag.
-rw-r--r-- | gnu/packages/emulators.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index d6509bd650..5ff6c886d2 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -1313,7 +1313,7 @@ as RetroArch.") (define-public retroarch (package (name "retroarch") - (version "1.9.1") + (version "1.9.2") (source (origin (method git-fetch) @@ -1322,7 +1322,7 @@ as RetroArch.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0cacb2m3p4fsxxbwh4h5q75mczyp0x56i2gc99pdkz1a4434zfnh")) + (base32 "0zrry2zwknzsrrz8r6rl1iy9hmiv4dwjmf61aidx3xwxby3g82qg")) (patches (search-patches "retroarch-LIBRETRO_DIRECTORY.patch")))) (build-system gnu-build-system) @@ -1359,7 +1359,6 @@ as RetroArch.") '("--enable-neon" "--enable-floathard") '()) (string-append "--prefix=" out) - "--disable-git_version" ; we use release version ;; Non-free software are available through the core updater, ;; disable it. See <https://issues.guix.gnu.org/38360>. "--disable-update_cores" |