From bdc35b925ba03bddf6cdd72edba9fab61aad041f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 28 Dec 2021 23:42:35 +0100 Subject: gnu: fluidsynth: Update to 2.2.4. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/audio.scm (fluidsynth): Update to 2.2.4. [arguments]: Don't explicitly return #t from phases. [inputs]: Move alsa-lib, glib, jack-1, lash, libsndfile, and readline from here… [propagated-inputs]: …to here. --- gnu/packages/audio.scm | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ae1a0b07aa..665631a64b 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1724,7 +1724,7 @@ follower.") (define-public fluidsynth (package (name "fluidsynth") - (version "2.1.8") + (version "2.2.4") (source (origin (method git-fetch) (uri (git-reference @@ -1733,7 +1733,7 @@ follower.") (file-name (git-file-name name version)) (sha256 (base32 - "0r944ndn138ak9s3ivgd1wgkwkh6zp7jjnxd30hryczc6kbhkpmr")))) + "1061rdj69503spkd8vmfl3fqvyg4l41k5xcc4gw7niy31hnpnjmn")))) (build-system cmake-build-system) (arguments '(#:tests? #f ; no check target @@ -1744,18 +1744,19 @@ follower.") ;; Install libraries to /lib, not /lib64. (substitute* "CMakeLists.txt" (("LIB_SUFFIX \\$\\{_init_lib_suffix\\}") - "LIB_SUFFIX \"\"")) - #t))))) + "LIB_SUFFIX \"\""))))))) (inputs - (list libsndfile - alsa-lib - jack-1 - ladspa - lash - readline - glib)) + (list ladspa)) (native-inputs (list pkg-config)) + (propagated-inputs + ;; In Libs.private of fluidsynth.pc. + (list alsa-lib + glib + jack-1 + lash + libsndfile + readline)) (home-page "https://www.fluidsynth.org/") (synopsis "SoundFont synthesizer") (description -- cgit v1.2.3