summary refs log tree commit diff
path: root/pkgs/applications/audio/fluidsynth
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom@yandex.ru>2013-12-04 06:48:29 +0200
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-12-04 06:48:29 +0200
commitcd16faa25738e1fd885279b0707e6a842e5479c8 (patch)
tree425d0cf15598006d0e61833ef740c96f12b7bff2 /pkgs/applications/audio/fluidsynth
parent3f5e010117a47ccad89aac305d8bcc7e11adea21 (diff)
downloadnixlib-cd16faa25738e1fd885279b0707e6a842e5479c8.tar
nixlib-cd16faa25738e1fd885279b0707e6a842e5479c8.tar.gz
nixlib-cd16faa25738e1fd885279b0707e6a842e5479c8.tar.bz2
nixlib-cd16faa25738e1fd885279b0707e6a842e5479c8.tar.lz
nixlib-cd16faa25738e1fd885279b0707e6a842e5479c8.tar.xz
nixlib-cd16faa25738e1fd885279b0707e6a842e5479c8.tar.zst
nixlib-cd16faa25738e1fd885279b0707e6a842e5479c8.zip
fluidsynth: switch to cmake build system
Diffstat (limited to 'pkgs/applications/audio/fluidsynth')
-rw-r--r--pkgs/applications/audio/fluidsynth/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/fluidsynth/default.nix b/pkgs/applications/audio/fluidsynth/default.nix
index 89e95f62cd5f..d9998a9f814d 100644
--- a/pkgs/applications/audio/fluidsynth/default.nix
+++ b/pkgs/applications/audio/fluidsynth/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, alsaLib, glib, jackaudio, libsndfile, pkgconfig
-, pulseaudio }:
+, pulseaudio, cmake }:
 
 stdenv.mkDerivation  rec {
   name = "fluidsynth-${version}";
@@ -20,7 +20,7 @@ stdenv.mkDerivation  rec {
   NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin
     "-framework CoreAudio";
 
-  buildInputs = [ glib libsndfile pkgconfig ]
+  buildInputs = [ cmake glib libsndfile pkgconfig ]
     ++ stdenv.lib.optionals (!stdenv.isDarwin) [ alsaLib pulseaudio jackaudio ];
 
   meta = with stdenv.lib; {