depot/third_party/nixpkgs/pkgs/desktops/deepin/library/gio-qt/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

64 lines
1.4 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
cmake,
pkg-config,
wrapQtAppsHook,
glibmm,
doxygen,
qttools,
qtbase,
buildDocs ? true,
}:
stdenv.mkDerivation rec {
pname = "gio-qt";
version = "0.0.14";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
hash = "sha256-qDkkLqGsrw+otUy3/iZJJZ2RtpNYPGc/wktdVpw2weg=";
};
# Upstream compiles both qt5 and qt6 versions, which is not possible in nixpkgs
# because of the conflict between qt5 hooks and qt6 hooks
postPatch = ''
substituteInPlace {gio-qt,qgio-tools}/CMakeLists.txt \
--replace "include(qt6.cmake)" " "
'';
nativeBuildInputs =
[
cmake
pkg-config
wrapQtAppsHook
]
++ lib.optionals buildDocs [
doxygen
qttools.dev
];
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib"
"-DPROJECT_VERSION=${version}"
] ++ lib.optionals (!buildDocs) [ "-DBUILD_DOCS=OFF" ];
propagatedBuildInputs = [ glibmm ];
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 = "Gio wrapper for Qt applications";
homepage = "https://github.com/linuxdeepin/gio-qt";
license = licenses.lgpl3Plus;
platforms = platforms.linux;
maintainers = teams.deepin.members;
};
}