mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add retroarch-assets.
* gnu/packages/emulators.scm (retroarch-assets): New variable. Change-Id: I1ac0eb6fd3e1e9c1ef5b4b120e7ac72cf3b68ca0
This commit is contained in:
parent
964c075dc5
commit
5f29a0cf21
1 changed files with 25 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue