~ruther/guix-local

3b5dfbbfac77b770e2aca5716f3268a654c6170d — Maxim Cournoyer 1 year, 2 months ago cab1bff
gnu: retroarch-core-info: Update to 1.20.0.

* gnu/packages/emulators.scm (retroarch-core-info): Update to 1.20.0.

Reviewed-by: Sou Bunnbu (宋文武) <iyzsong@member.fsf.org>
Change-Id: I85eec43eedf24df44b5d486a2410652ad87536db
1 files changed, 20 insertions(+), 23 deletions(-)

M gnu/packages/emulators.scm
M gnu/packages/emulators.scm => gnu/packages/emulators.scm +20 -23
@@ 1780,31 1780,28 @@ generate the various User Experience (UX) environments.")
    (license license:cc-by4.0)))

(define-public retroarch-core-info
  ;; Use the latest commit, to get recent additions such as bsnes-jg.
  (let ((commit "c0e7b76d02504754de67a1318f93089f1e29f15f")
        (revision "0"))
    (package
      (name "retroarch-core-info")
      (version (git-version "1.19.0" revision commit))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                      (url "https://github.com/libretro/libretro-core-info")
                      (commit commit)))
                (file-name (git-file-name name version))
                (sha256
                 (base32
                  "11xpy3zhy2smp4a70fc0r1b76mvmjyabkaaipifsxm3j25drki5z"))))
      (build-system copy-build-system)
      (arguments
       (list #:install-plan #~'(("." "lib/libretro/"
                                 #:include-regexp ("\\.info$")))))
      (home-page "https://github.com/libretro/libretro-core-info")
      (synopsis "Libretro core info files")
      (description "This is a versioned snapshot of the files containing
  (package
    (name "retroarch-core-info")
    (version "1.20.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/libretro/libretro-core-info")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1rfvp0lkv99jgpfyb9pp6vrh1i1974p3lckh93y1bibdizyxmwjg"))))
    (build-system copy-build-system)
    (arguments
     (list #:install-plan #~'(("." "lib/libretro/"
                               #:include-regexp ("\\.info$")))))
    (home-page "https://github.com/libretro/libretro-core-info")
    (synopsis "Libretro core info files")
    (description "This is a versioned snapshot of the files containing
metadata about each known libretro core.  The snapshot is taken from the
@url{https://github.com/libretro/libretro-super, libretro-super} repository.")
      (license license:expat))))
    (license license:expat)))

(define-public retroarch-joypad-autoconfig
  (package