about summary refs log tree commit diff
path: root/pkgs/development/libraries/audio
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2012-10-05 23:11:46 +0200
committerCillian de Róiste <goibhniu@fsfe.org>2012-10-07 14:06:35 +0200
commit08e025acab07aba03c9ab4ed3566a8b257306a7b (patch)
treea0dd9c5334ccec42aedc482fec73ad31dbc0de21 /pkgs/development/libraries/audio
parent064cf682815e953b4f17d8400c9708bca7573137 (diff)
downloadnixlib-08e025acab07aba03c9ab4ed3566a8b257306a7b.tar
nixlib-08e025acab07aba03c9ab4ed3566a8b257306a7b.tar.gz
nixlib-08e025acab07aba03c9ab4ed3566a8b257306a7b.tar.bz2
nixlib-08e025acab07aba03c9ab4ed3566a8b257306a7b.tar.lz
nixlib-08e025acab07aba03c9ab4ed3566a8b257306a7b.tar.xz
nixlib-08e025acab07aba03c9ab4ed3566a8b257306a7b.tar.zst
nixlib-08e025acab07aba03c9ab4ed3566a8b257306a7b.zip
Adding Qt and GTK support to suil so that they can be used for the LV2 plugin GUIs
Diffstat (limited to 'pkgs/development/libraries/audio')
-rw-r--r--pkgs/development/libraries/audio/suil/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/audio/suil/default.nix b/pkgs/development/libraries/audio/suil/default.nix
index a7300f541c4e..9fa76f5b4067 100644
--- a/pkgs/development/libraries/audio/suil/default.nix
+++ b/pkgs/development/libraries/audio/suil/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, lv2, pkgconfig, python, serd, sord, sratom }:
+{ stdenv, fetchurl, gtk, lv2, pkgconfig, python, serd, sord, sratom, qt4 }:
 
 stdenv.mkDerivation rec {
   name = "suil-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "1rqi16zqnaf30gr2gwb8wbhg8a2l3m5fllf7rabldmgj4b4jlyzp";
   };
 
-  buildInputs = [ lv2 pkgconfig python serd sord sratom ];
+  buildInputs = [ gtk lv2 pkgconfig python qt4 serd sord sratom ];
 
   configurePhase = "python waf configure --prefix=$out";