summary refs log tree commit diff
path: root/pkgs/applications/audio/freewheeling
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2022-01-30 02:22:10 +0000
committerGitHub <noreply@github.com>2022-01-30 02:22:10 +0000
commit9721abadfdb42738ba3591f8b1da06a340b85309 (patch)
tree7940834b47b3998c3ac08782f3140859d9df39fb /pkgs/applications/audio/freewheeling
parent46244fa2905c3c506ceff2e364196385026cb507 (diff)
freewheeling: build with fluidsynth (#157085)
Fixes constant stream of warning messages
"UserVariable: WARNING: Can't convert invalid variable!"
due to "SYSTEM_fluidsynth_enabled" var in the default
"coreinterface.xml".

Enables MIDI synthesis out of the box.
Diffstat (limited to 'pkgs/applications/audio/freewheeling')
-rw-r--r--pkgs/applications/audio/freewheeling/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/freewheeling/default.nix b/pkgs/applications/audio/freewheeling/default.nix
index 75e44d8c4fadd..b7afb0d57a03a 100644
--- a/pkgs/applications/audio/freewheeling/default.nix
+++ b/pkgs/applications/audio/freewheeling/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, gnutls, freetype
+{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, gnutls, freetype, fluidsynth
 , SDL, SDL_gfx, SDL_ttf, liblo, libxml2, alsa-lib, libjack2, libvorbis
 , libSM, libsndfile, libogg, libtool
 }:
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkg-config autoreconfHook libtool ];
   buildInputs = [
-    freetype SDL SDL_gfx SDL_ttf
+    freetype fluidsynth SDL SDL_gfx SDL_ttf
     liblo libxml2 libjack2 alsa-lib libvorbis libsndfile libogg libSM
     (gnutls.overrideAttrs (oldAttrs: {
       configureFlags = oldAttrs.configureFlags ++ [ "--enable-openssl-compatibility" ];