depot/pkgs/desktops/deepin/library/qt5integration/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

55 lines
1,002 B
Nix

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