56 lines
1 KiB
Nix
56 lines
1 KiB
Nix
|
{ stdenv
|
||
|
, lib
|
||
|
, fetchFromGitHub
|
||
|
, dtkwidget
|
||
|
, qmake
|
||
|
, qtbase
|
||
|
, qtsvg
|
||
|
, pkg-config
|
||
|
, wrapQtAppsHook
|
||
|
, qtx11extras
|
||
|
, qt5platform-plugins
|
||
|
, lxqt
|
||
|
, mtdev
|
||
|
, xorg
|
||
|
, gtest
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "qt5integration";
|
||
|
version = "5.6.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "linuxdeepin";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-GXxPoBM4tlWezTfv/f+/IJezzcAsuMbr/OOGaSOpn2g=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ qmake pkg-config wrapQtAppsHook ];
|
||
|
|
||
|
buildInputs = [
|
||
|
dtkwidget
|
||
|
qtx11extras
|
||
|
qt5platform-plugins
|
||
|
mtdev
|
||
|
lxqt.libqtxdg
|
||
|
xorg.xcbutilrenderutil
|
||
|
gtest
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
mkdir -p $out/${qtbase.qtPluginPrefix}
|
||
|
cp -r bin/plugins/* $out/${qtbase.qtPluginPrefix}/
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Qt platform theme integration plugins for DDE";
|
||
|
homepage = "https://github.com/linuxdeepin/qt5integration";
|
||
|
license = licenses.lgpl3Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = teams.deepin.members;
|
||
|
};
|
||
|
}
|