summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-05-21 18:24:53 +0100
committerGitHub <noreply@github.com>2017-05-21 18:24:53 +0100
commitc1894bef7a0ccddac2bc6443d34733a25f60e353 (patch)
tree5293772d642846a1912a51b880f5f9ffd3d8c38d
parent062e32d5c1301c941785607856cedb803a256e37 (diff)
parentdf6a42340f3648be653c25d55bcc316fb3e6af89 (diff)
downloadnixpkgs-c1894bef7a0ccddac2bc6443d34733a25f60e353.tar
nixpkgs-c1894bef7a0ccddac2bc6443d34733a25f60e353.tar.gz
nixpkgs-c1894bef7a0ccddac2bc6443d34733a25f60e353.tar.bz2
nixpkgs-c1894bef7a0ccddac2bc6443d34733a25f60e353.tar.lz
nixpkgs-c1894bef7a0ccddac2bc6443d34733a25f60e353.tar.xz
nixpkgs-c1894bef7a0ccddac2bc6443d34733a25f60e353.tar.zst
nixpkgs-c1894bef7a0ccddac2bc6443d34733a25f60e353.zip
Merge pull request #25458 from seppeljordan/csound-enable-osc
csound: add liblo to buildinputs to enable osc capabilities
-rw-r--r--pkgs/applications/audio/csound/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/audio/csound/default.nix b/pkgs/applications/audio/csound/default.nix
index 976ecb675e7..4f58ae48390 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";