c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, cmake
|
|
, qttools
|
|
, doxygen
|
|
, wrapQtAppsHook
|
|
, qtbase
|
|
, dtkcore
|
|
, qtimageformats
|
|
, lxqt
|
|
, librsvg
|
|
, freeimage
|
|
, libraw
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dtkgui";
|
|
version = "5.6.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-4NHt/hLtt99LhWvBX9e5ueB5G86SXx553G6fyHZBXcE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qttools
|
|
doxygen
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
lxqt.libqtxdg
|
|
librsvg
|
|
freeimage
|
|
libraw
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dtkcore
|
|
qtimageformats
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DDVERSION=${version}"
|
|
"-DBUILD_DOCS=ON"
|
|
"-DQCH_INSTALL_DESTINATION=${qtbase.qtDocPrefix}"
|
|
"-DMKSPECS_INSTALL_DIR=${placeholder "out"}/mkspecs/modules"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
];
|
|
|
|
preConfigure = ''
|
|
# qt.qpa.plugin: Could not find the Qt platform plugin "minimal"
|
|
# A workaround is to set QT_PLUGIN_PATH explicitly
|
|
export QT_PLUGIN_PATH=${qtbase.bin}/${qtbase.qtPluginPrefix}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Deepin Toolkit, gui module for DDE look and feel";
|
|
homepage = "https://github.com/linuxdeepin/dtkgui";
|
|
license = licenses.lgpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.deepin.members;
|
|
};
|
|
}
|