summary refs log tree commit diff
path: root/pkgs/applications/audio/ardour
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2012-07-05 23:29:45 +0200
committerCillian de Róiste <goibhniu@fsfe.org>2012-07-05 23:29:45 +0200
commita2501c3561193045e7654bbb169d52a23c871282 (patch)
tree3435e2a7d63719891e9e5f05ac91783f80f2f311 /pkgs/applications/audio/ardour
parent562259efc1fc3fa06b8f81a48bf612880abf2230 (diff)
downloadnixlib-a2501c3561193045e7654bbb169d52a23c871282.tar
nixlib-a2501c3561193045e7654bbb169d52a23c871282.tar.gz
nixlib-a2501c3561193045e7654bbb169d52a23c871282.tar.bz2
nixlib-a2501c3561193045e7654bbb169d52a23c871282.tar.lz
nixlib-a2501c3561193045e7654bbb169d52a23c871282.tar.xz
nixlib-a2501c3561193045e7654bbb169d52a23c871282.tar.zst
nixlib-a2501c3561193045e7654bbb169d52a23c871282.zip
Adding lv2 support
LV2 is a portable plugin standard for audio systems, similar in scope to  LADSPA, VST, AU, and others. The Calf audio plugin pack uses LV2 and Ardour3 has also been updated to support LV2 Plugins
Diffstat (limited to 'pkgs/applications/audio/ardour')
-rw-r--r--pkgs/applications/audio/ardour/ardour3.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/applications/audio/ardour/ardour3.nix b/pkgs/applications/audio/ardour/ardour3.nix
index c34576016ad2..c803ec076187 100644
--- a/pkgs/applications/audio/ardour/ardour3.nix
+++ b/pkgs/applications/audio/ardour/ardour3.nix
@@ -2,8 +2,8 @@
 , fftwSinglePrec, flac, glib, glibmm, gtk, gtkmm, jackaudio
 , libgnomecanvas, libgnomecanvasmm, liblo, libmad, libogg, librdf
 , librdf_raptor, librdf_rasqal, libsamplerate, libsigcxx, libsndfile
-, libusb, libuuid, libxml2, libxslt, makeWrapper, pango, perl, pkgconfig
-, python }:
+, libusb, libuuid, libxml2, libxslt, lilv, lv2, makeWrapper, pango
+, perl, pkgconfig, python, serd, sord, sratom, suil }:
 
 let
   # Ardour 3 Beta 4a
@@ -19,11 +19,14 @@ stdenv.mkDerivation {
     sha256 = "0a68xb3l36m5908y3airxw1b3bymhrjrf1l492mgcvviq6pn7pmk";
   };
 
-  buildInputs = [ alsaLib aubio boost cairomm curl fftw fftwSinglePrec
-    flac glib glibmm gtk gtkmm jackaudio libgnomecanvas
-    libgnomecanvasmm liblo libmad libogg librdf librdf_raptor
-    librdf_rasqal libsamplerate libsigcxx libsndfile libusb libuuid
-    libxml2 libxslt pango perl pkgconfig python ];
+  buildInputs = 
+    [ alsaLib aubio boost cairomm curl fftw fftwSinglePrec
+      flac glib glibmm gtk gtkmm jackaudio libgnomecanvas
+      libgnomecanvasmm liblo libmad libogg librdf librdf_raptor
+      librdf_rasqal libsamplerate libsigcxx libsndfile libusb libuuid
+      libxml2 libxslt lilv lv2 pango perl pkgconfig python serd sord
+      sratom suil
+    ];
 
   patchPhase = ''
     printf '#include "ardour/svn_revision.h"\nnamespace ARDOUR { const char* svn_revision = \"${rev}\"; }\n' > libs/ardour/svn_revision.cc