about summary refs log tree commit diff
path: root/pkgs/applications/audio/qjackctl
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-02-03 18:19:44 +0300
committerNikolay Amiantov <ab@fmap.me>2017-02-03 18:21:14 +0300
commitc7d7ad1d9f5cf57970ca15757363c21a6218ca6d (patch)
tree5b3fccf7c8cd77da0f97f490f527359319caa9dc /pkgs/applications/audio/qjackctl
parent99a83fbe1de57a25fc779a153075cdae7cc3e46e (diff)
qjackctl: don't use qt.full
Diffstat (limited to 'pkgs/applications/audio/qjackctl')
-rw-r--r--pkgs/applications/audio/qjackctl/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/audio/qjackctl/default.nix b/pkgs/applications/audio/qjackctl/default.nix
index c84e5cdfb494b..52b94ca07d9e5 100644
--- a/pkgs/applications/audio/qjackctl/default.nix
+++ b/pkgs/applications/audio/qjackctl/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, alsaLib, libjack2, dbus, qt5 }:
+{ stdenv, fetchurl, alsaLib, libjack2, dbus, qtbase, qttools, qtx11extras }:
 
 stdenv.mkDerivation rec {
   version = "0.4.3";
@@ -12,14 +12,15 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    qt5.full
-    qt5.qtx11extras
+    qtbase
+    qtx11extras
+    qttools
     alsaLib
     libjack2
     dbus
   ];
 
-  configureFlags = "--enable-jack-version";
+  configureFlags = [ "--enable-jack-version" ];
 
   meta = with stdenv.lib; {
     description = "A Qt application to control the JACK sound server daemon";