diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-09-27 16:04:14 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-07 01:20:21 +0900 |
| commit | 5f29a0cf21215beb317e8566941b27e2e40595f1 (patch) | |
| tree | e319297045affa6237461f44b9868bcb35cb9887 /gnu/packages/emulators.scm | |
| parent | 964c075dc5bcd1875b61c6eafbaab990cf49f69d (diff) | |
gnu: Add retroarch-assets.
* gnu/packages/emulators.scm (retroarch-assets): New variable.
Change-Id: I1ac0eb6fd3e1e9c1ef5b4b120e7ac72cf3b68ca0
Diffstat (limited to 'gnu/packages/emulators.scm')
| -rw-r--r-- | gnu/packages/emulators.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 3030d44e1bc..b9bde23ce1d 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm | |||
| @@ -1496,6 +1496,31 @@ core allowing the lowRES NX programs to be used with libretro frontends such | |||
| 1496 | as RetroArch.") | 1496 | as RetroArch.") |
| 1497 | (license license:zlib))) | 1497 | (license license:zlib))) |
| 1498 | 1498 | ||
| 1499 | (define-public retroarch-assets | ||
| 1500 | (package | ||
| 1501 | (name "retroarch-assets") | ||
| 1502 | (version "1.19.0") | ||
| 1503 | (source (origin | ||
| 1504 | (method git-fetch) | ||
| 1505 | (uri (git-reference | ||
| 1506 | (url "https://github.com/libretro/retroarch-assets") | ||
| 1507 | (commit (string-append "v" version)))) | ||
| 1508 | (file-name (git-file-name name version)) | ||
| 1509 | (sha256 | ||
| 1510 | (base32 | ||
| 1511 | "1i496x0lkqard5i9045yf438kivwd6f6za8p9fil8w1rfrhk2knz")))) | ||
| 1512 | (build-system gnu-build-system) | ||
| 1513 | (arguments | ||
| 1514 | (list #:tests? #f ;no test suite | ||
| 1515 | #:make-flags #~(list (string-append "PREFIX=" #$output)) | ||
| 1516 | #:phases #~(modify-phases %standard-phases | ||
| 1517 | (delete 'build)))) ;no compilation required | ||
| 1518 | (home-page "https://www.libretro.com/") | ||
| 1519 | (synopsis "RetroArch menu assets") | ||
| 1520 | (description "The RetroArch assets are the user interface elements used to | ||
| 1521 | generate the various User Experience (UX) environments.") | ||
| 1522 | (license license:cc-by4.0))) | ||
| 1523 | |||
| 1499 | (define-public retroarch | 1524 | (define-public retroarch |
| 1500 | (package | 1525 | (package |
| 1501 | (name "retroarch") | 1526 | (name "retroarch") |
