gnu: Add retroarch-assets.

* gnu/packages/emulators.scm (retroarch-assets): New variable.

Change-Id: I1ac0eb6fd3e1e9c1ef5b4b120e7ac72cf3b68ca0
This commit is contained in:
Maxim Cournoyer 2024-09-27 16:04:14 +09:00
parent 964c075dc5
commit 5f29a0cf21
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1496,6 +1496,31 @@ (define-public libretro-lowresnx
as RetroArch.")
(license license:zlib)))
(define-public retroarch-assets
(package
(name "retroarch-assets")
(version "1.19.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/libretro/retroarch-assets")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1i496x0lkqard5i9045yf438kivwd6f6za8p9fil8w1rfrhk2knz"))))
(build-system gnu-build-system)
(arguments
(list #:tests? #f ;no test suite
#:make-flags #~(list (string-append "PREFIX=" #$output))
#:phases #~(modify-phases %standard-phases
(delete 'build)))) ;no compilation required
(home-page "https://www.libretro.com/")
(synopsis "RetroArch menu assets")
(description "The RetroArch assets are the user interface elements used to
generate the various User Experience (UX) environments.")
(license license:cc-by4.0)))
(define-public retroarch
(package
(name "retroarch")