diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-18 01:01:17 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-18 01:14:15 +0100 |
commit | b4dd92d38a966e14c338400b6b965bb31e4508de (patch) | |
tree | fe75ef0f2f5054039af4d69b627a1107bef0b355 /gnu | |
parent | 7c80c0dd082399830474b7d7fa2f1a829f5b5d91 (diff) | |
download | guix-b4dd92d38a966e14c338400b6b965bb31e4508de.tar.gz guix-b4dd92d38a966e14c338400b6b965bb31e4508de.zip |
gnu: easyrpg-player: Update to 0.7.0.
* gnu/packages/easyrpg.scm (easyrpg-player): Update to 0.7.0.
[inputs]: Add fluidsynth, fmt.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/easyrpg.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/easyrpg.scm b/gnu/packages/easyrpg.scm index aa1fd3f07a..3a5413d94a 100644 --- a/gnu/packages/easyrpg.scm +++ b/gnu/packages/easyrpg.scm @@ -31,6 +31,7 @@ #:use-module (gnu packages image) #:use-module (gnu packages mp3) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pretty-print) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages sdl) #:use-module (gnu packages xdisorg) @@ -75,7 +76,7 @@ It can read and write LCF and XML files.") (define-public easyrpg-player (package (name "easyrpg-player") - (version "0.6.2.3") + (version "0.7.0") (source (origin (method url-fetch) (uri (string-append @@ -83,7 +84,7 @@ It can read and write LCF and XML files.") "/easyrpg-player-" version ".tar.gz")) (sha256 (base32 - "1lahbhgyhky0hgd3xwhgg2nm8mfa9p2i1fzxi00561hnk2ya86pm")))) + "1hm4hdi4l8c9jw0x3kcm6iwgfv8parlfj13va3r3p90040gs7s8l")))) (build-system gnu-build-system) (arguments '(#:configure-flags @@ -92,7 +93,9 @@ It can read and write LCF and XML files.") (native-inputs (list pkg-config)) (inputs - (list freetype + (list fluidsynth + fmt + freetype harfbuzz liblcf libpng |