From df6a42340f3648be653c25d55bcc316fb3e6af89 Mon Sep 17 00:00:00 2001 From: Sebastian Jordan Date: Tue, 2 May 2017 22:13:27 +0200 Subject: [PATCH] csound: add liblo to buildinputs to enable osc capabilities --- pkgs/applications/audio/csound/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/audio/csound/default.nix b/pkgs/applications/audio/csound/default.nix index 976ecb675e76..4f58ae483901 100644 --- a/pkgs/applications/audio/csound/default.nix +++ b/pkgs/applications/audio/csound/default.nix @@ -2,6 +2,7 @@ , alsaLib ? null , libpulseaudio ? null , tcltk ? null +, liblo ? null # maybe csound can be compiled with support for those, see configure output # , ladspa ? null @@ -27,7 +28,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake flex bison ]; - buildInputs = [ libsndfile alsaLib libpulseaudio tcltk boost ]; + buildInputs = [ libsndfile alsaLib libpulseaudio tcltk boost liblo ]; meta = with stdenv.lib; { description = "Sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";