mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
qjackctl: don't use qt.full
This commit is contained in:
parent
99a83fbe1d
commit
c7d7ad1d9f
@ -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";
|
||||
|
@ -14670,7 +14670,7 @@ with pkgs;
|
||||
|
||||
qgroundcontrol = qt55.callPackage ../applications/science/robotics/qgroundcontrol { };
|
||||
|
||||
qjackctl = callPackage ../applications/audio/qjackctl { };
|
||||
qjackctl = qt5.callPackage ../applications/audio/qjackctl { };
|
||||
|
||||
qmidinet = callPackage ../applications/audio/qmidinet { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user