Skip to content

Commit

Permalink
qtstyleplugin-kvantum: use wrapQtAppsHook
Browse files Browse the repository at this point in the history
Shouldn't be needed for the style engine itself to work, but it is
needed for `kvantummanager` and `kvantumpreview`.
  • Loading branch information
Shados committed Aug 26, 2019
1 parent 984851a commit 30360cb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
@@ -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 {
pname = "qtstyleplugin-kvantum";
Expand All @@ -11,8 +13,12 @@ stdenv.mkDerivation rec {
sha256 = "0aqlv7mj7r9vjm6pvb8pv3cyx35lgz8rjjas3k8wfdr3sqyyy25g";
};

nativeBuildInputs = [ qmake qttools ];
buildInputs = [ qtbase qtsvg qtx11extras kwindowsystem libX11 libXext ];
nativeBuildInputs = [
qmake qttools wrapQtAppsHook
];
buildInputs = [
qtbase qtsvg qtx11extras kwindowsystem libX11 libXext
];

sourceRoot = "source/Kvantum";

Expand Down

0 comments on commit 30360cb

Please sign in to comment.