2020-05-03 20:52:19 +01:00
|
|
|
{ stdenv
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkgconfig
|
|
|
|
, qmake
|
|
|
|
, qtx11extras
|
|
|
|
, libSM
|
|
|
|
, mtdev
|
|
|
|
, cairo
|
|
|
|
, deepin
|
|
|
|
, qtbase
|
|
|
|
}:
|
2018-09-03 20:37:54 +01:00
|
|
|
|
2019-07-22 03:53:18 +01:00
|
|
|
mkDerivation rec {
|
2020-05-26 20:28:49 +01:00
|
|
|
pname = "qt5platform-plugins";
|
2020-05-26 20:17:20 +01:00
|
|
|
version = "5.0.11";
|
2019-10-22 00:56:20 +01:00
|
|
|
|
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "linuxdeepin";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-05-26 20:17:20 +01:00
|
|
|
sha256 = "14xkr3p49716jc9v7ksj6jgcmfa65qicqrmablizfi71srg3z2pr";
|
2019-10-22 00:56:20 +01:00
|
|
|
})
|
|
|
|
qtbase.src
|
|
|
|
];
|
2018-09-03 20:37:54 +01:00
|
|
|
|
2019-10-22 00:56:20 +01:00
|
|
|
sourceRoot = "source";
|
2018-09-03 20:37:54 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
qmake
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
qtx11extras
|
|
|
|
libSM
|
|
|
|
mtdev
|
|
|
|
cairo
|
2019-10-22 00:56:20 +01:00
|
|
|
qtbase
|
2018-09-03 20:37:54 +01:00
|
|
|
];
|
|
|
|
|
2019-10-22 00:56:20 +01:00
|
|
|
postPatch = ''
|
|
|
|
# The Qt5 platforms plugin is vendored in the package, however what's there is not always up-to-date with what's in nixpkgs.
|
|
|
|
# We simply copy the headers from qtbase's source tarball.
|
|
|
|
mkdir -p platformplugin/libqt5xcbqpa-dev/${qtbase.version}
|
2019-10-22 13:44:12 +01:00
|
|
|
cp -r ../qtbase-everywhere-src-${qtbase.version}/src/plugins/platforms/xcb/*.h platformplugin/libqt5xcbqpa-dev/${qtbase.version}/
|
2019-10-22 00:56:20 +01:00
|
|
|
'';
|
|
|
|
|
2019-07-22 04:23:25 +01:00
|
|
|
qmakeFlags = [
|
2019-09-03 17:38:57 +01:00
|
|
|
"INSTALL_PATH=${placeholder "out"}/${qtbase.qtPluginPrefix}/platforms"
|
2019-07-22 04:23:25 +01:00
|
|
|
];
|
2018-09-03 20:37:54 +01:00
|
|
|
|
2020-05-03 21:03:55 +01:00
|
|
|
passthru.updateScript = deepin.updateScript { inherit pname version; src = (builtins.head srcs); };
|
2018-10-30 22:17:45 +00:00
|
|
|
|
2018-09-03 20:37:54 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt platform theme integration plugin for DDE";
|
2020-05-26 20:28:49 +01:00
|
|
|
homepage = "https://github.com/linuxdeepin/qt5platform-plugins";
|
2018-09-03 20:37:54 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|