4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
59 lines
1 KiB
Nix
59 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.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-MZkhTvjTyBrlntgFq2F3iGK7WvfmnGJQLk5B1OM5kQo=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|