depot/third_party/nixpkgs/pkgs/desktops/deepin/library/qt5integration/default.nix
Default email 98eb3e9ef5 Project import generated by Copybara.
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
2024-07-01 15:47:52 +00:00

56 lines
963 B
Nix

{ stdenv
, lib
, fetchFromGitHub
, dtkwidget
, cmake
, pkg-config
, qtbase
, qtsvg
, qtx11extras
, lxqt
, mtdev
, xorg
, gtest
}:
stdenv.mkDerivation rec {
pname = "qt5integration";
version = "5.6.29";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
hash = "sha256-yFY+bsvmVo92u6eLw9VYGAz5nehVrFob4AkdyG0nvjM=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
dtkwidget
qtbase
qtsvg
qtx11extras
mtdev
lxqt.libqtxdg_3_12
xorg.xcbutilrenderutil
gtest
];
cmakeFlags = [
"-DPLUGIN_INSTALL_BASE_DIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
];
dontWrapQtApps = true;
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;
};
}