98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
74 lines
1.5 KiB
Nix
74 lines
1.5 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, doxygen
|
|
, qt6Packages
|
|
, dtk6core
|
|
, librsvg
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dtk6gui";
|
|
version = "6.0.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = "dtk6gui";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-fnbCKqeeQE5WBnNJ0D1ihsZswDSJ/Oj98eUXFrOuk+w=";
|
|
};
|
|
|
|
patches = [
|
|
./fix-pkgconfig-path.patch
|
|
./fix-pri-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
doxygen
|
|
qt6Packages.qttools
|
|
qt6Packages.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qt6Packages.qtbase
|
|
librsvg
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dtk6core
|
|
qt6Packages.qtimageformats
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DDTK_VERSION=${finalAttrs.version}"
|
|
"-DBUILD_DOCS=ON"
|
|
"-DMKSPECS_INSTALL_DIR=${placeholder "out"}/mkspecs/modules"
|
|
"-DQCH_INSTALL_DESTINATION=${placeholder "doc"}/share/doc"
|
|
];
|
|
|
|
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=${lib.getBin qt6Packages.qtbase}/${qt6Packages.qtbase.qtPluginPrefix}
|
|
'';
|
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
postFixup = ''
|
|
for binary in $out/libexec/dtk6/DGui/bin/*; do
|
|
wrapQtApp $binary
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Deepin Toolkit, gui module for DDE look and feel";
|
|
homepage = "https://github.com/linuxdeepin/dtk6gui";
|
|
license = lib.licenses.lgpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = lib.teams.deepin.members;
|
|
};
|
|
})
|