diff --git a/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix b/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix index 660c861d95a2..291fc19d5474 100644 --- a/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix +++ b/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix @@ -5,25 +5,23 @@ , extra-cmake-modules , pkg-config , dtkcommon -, qtbase -, qtx11extras +, libsForQt5 , mtdev , cairo , xorg , wayland , dwayland -, qtwayland }: stdenv.mkDerivation rec { pname = "qt5platform-plugins"; - version = "5.6.29"; + version = "5.6.32"; src = fetchFromGitHub { owner = "linuxdeepin"; repo = pname; rev = version; - hash = "sha256-KoX3TkEzGNwqG8XL6op0mpTVvdSQTzqd5OpAuCU2Ok4"; + hash = "sha256-jbt+ym6TQX3tecFCSlz8Z2ZnqOa69zYgaB5ohQM3lQg="; }; nativeBuildInputs = [ @@ -36,17 +34,17 @@ stdenv.mkDerivation rec { dtkcommon mtdev cairo - qtbase - qtx11extras + libsForQt5.qtbase + libsForQt5.qtx11extras xorg.libSM wayland dwayland - qtwayland + libsForQt5.qtwayland ]; cmakeFlags = [ - "-DINSTALL_PATH=${placeholder "out"}/${qtbase.qtPluginPrefix}/platforms" - "-DQT_XCB_PRIVATE_HEADERS=${qtbase.src}/src/plugins/platforms/xcb" + "-DINSTALL_PATH=${placeholder "out"}/${libsForQt5.qtbase.qtPluginPrefix}/platforms" + "-DQT_XCB_PRIVATE_HEADERS=${libsForQt5.qtbase.src}/src/plugins/platforms/xcb" ]; dontWrapQtApps = true;