diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2024-11-10 11:19:29 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2024-11-10 11:21:16 +0100 |
commit | aa2ccd6350caa094519c41f547f1d0fa68ab29ac (patch) | |
tree | e60bbae8b05c9aed11fe4945941cc82832e67b61 /gnu | |
parent | 3dc63f8ca7af8d4fee32a03c206b571896a3a70a (diff) | |
download | guix-aa2ccd6350caa094519c41f547f1d0fa68ab29ac.tar.gz |
gnu: ultrastar-deluxe: Update to 2024.10.0.
* gnu/packages/games.scm (ultrastar-deluxe): Bump version. [inputs]: Use ffmpeg 6 and ttf output of font-google-noto. Change-Id: I105c352abd8296a73dde54fecdfc6de7692e712e
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/games.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index c503be2378..4e48c09e98 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -11906,7 +11906,7 @@ and unsafe rides. Which path will you take?") (define-public ultrastar-deluxe (package (name "ultrastar-deluxe") - (version "2023.9.0") + (version "2024.10.0") (source (origin (method git-fetch) (uri (git-reference @@ -11915,7 +11915,7 @@ and unsafe rides. Which path will you take?") (file-name (git-file-name name version)) (sha256 (base32 - "0sm0f67hpsys072yvp5phhza686ivbb18qlfy62vsdv0v9cizxia")) + "16q6b5nnjx5baq4m30ys47970kjgp06xihyd6qyb08s0yk2f54jz")) (patches (search-patches "ultrastar-deluxe-no-freesans.patch")) (modules '((guix build utils))) (snippet @@ -11964,13 +11964,13 @@ and unsafe rides. Which path will you take?") (substitute* (string-append (assoc-ref outputs "out") "/share/ultrastardx/fonts/fonts.ini") - (("=NotoSans/") (string-append "=" #$font-google-noto + (("=NotoSans/") (string-append "=" #$font-google-noto:ttf "/share/fonts/truetype/")) (("=DejaVu/") (string-append "=" #$font-dejavu "/share/fonts/truetype/")))))))) - (inputs (list ffmpeg-5 + (inputs (list ffmpeg font-dejavu - font-google-noto + (list font-google-noto "ttf") ; Not needed, since we don’t have freesans. ;font-wqy-microhei freetype |