3
0
Fork 0
forked from mirrors/nixpkgs

falkon: use wrapQtAppsHook (#89375)

This commit is contained in:
JosephTheEngineer 2020-06-03 19:12:46 +10:00 committed by GitHub
parent 245ce6f61d
commit c976124d1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
, cmake, extra-cmake-modules, pkgconfig, qmake , cmake, extra-cmake-modules, pkgconfig, qmake
, libpthreadstubs, libxcb, libXdmcp , libpthreadstubs, libxcb, libXdmcp
, qtsvg, qttools, qtwebengine, qtx11extras , qtsvg, qttools, qtwebengine, qtx11extras
, qtwayland , qtwayland, wrapQtAppsHook
, kwallet , kwallet
}: }:
@ -30,7 +30,14 @@ mkDerivation rec {
kwallet kwallet
] ++ lib.optionals stdenv.isLinux [ qtwayland ]; ] ++ lib.optionals stdenv.isLinux [ qtwayland ];
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qmake qttools ]; nativeBuildInputs = [
cmake
extra-cmake-modules
pkgconfig
qmake
qttools
wrapQtAppsHook
];
enableParallelBuilding = true; enableParallelBuilding = true;