From eb44b1f30430954749d09916fd7885ff3062a417 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 3 Jul 2022 17:05:03 +0200 Subject: [PATCH] gnu: renpy: Install sdk-fonts. Without these fonts, the launcher will fail to launch. * gnu/packages/game-development.scm (renpy)[install]: Also recursively copy sdk-fonts. --- gnu/packages/game-development.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 07402aecf2..30512dcc80 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1431,6 +1431,8 @@ (define-public renpy (string-append out "/share/renpy/common")) (copy-recursively "gui" (string-append out "/share/renpy/gui")) + (copy-recursively "sdk-fonts" + (string-append out "/share/renpy/sdk-fonts")) (mkdir-p (string-append out "/bin")) (copy-file #$(local-file (search-auxiliary-file "renpy/renpy.in"))