qtstyleplugin-kvantum: use wrapQtAppsHook
Shouldn't be needed for the style engine itself to work, but it is needed for `kvantummanager` and `kvantumpreview`.
This commit is contained in:
parent
984851a9bf
commit
30360cb045
|
@ -1,4 +1,6 @@
|
||||||
{ stdenv, fetchFromGitHub, qmake, qtbase, qtsvg, qtx11extras, kwindowsystem, libX11, libXext, qttools }:
|
{ stdenv, fetchFromGitHub, qmake, qtbase, qtsvg, qtx11extras, kwindowsystem
|
||||||
|
, libX11, libXext, qttools, wrapQtAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "qtstyleplugin-kvantum";
|
pname = "qtstyleplugin-kvantum";
|
||||||
|
@ -11,8 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0aqlv7mj7r9vjm6pvb8pv3cyx35lgz8rjjas3k8wfdr3sqyyy25g";
|
sha256 = "0aqlv7mj7r9vjm6pvb8pv3cyx35lgz8rjjas3k8wfdr3sqyyy25g";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake qttools ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ qtbase qtsvg qtx11extras kwindowsystem libX11 libXext ];
|
qmake qttools wrapQtAppsHook
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
qtbase qtsvg qtx11extras kwindowsystem libX11 libXext
|
||||||
|
];
|
||||||
|
|
||||||
sourceRoot = "source/Kvantum";
|
sourceRoot = "source/Kvantum";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue