deepin.dtklog: init at 0.0.1

This commit is contained in:
rewine
2024-08-15 08:57:08 +08:00
parent 1b2a27f42b
commit 4dcd0829d1
2 changed files with 51 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ let
dtkgui = callPackage ./library/dtkgui { };
dtkwidget = callPackage ./library/dtkwidget { };
dtkdeclarative = callPackage ./library/dtkdeclarative { };
dtklog = callPackage ./library/dtklog { };
deepin-pdfium = callPackage ./library/deepin-pdfium { };
qt5platform-plugins = callPackage ./library/qt5platform-plugins { };
qt5integration = callPackage ./library/qt5integration { };
@@ -0,0 +1,50 @@
{
stdenv,
lib,
fetchFromGitHub,
cmake,
pkg-config,
libsForQt5,
spdlog,
systemd,
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "dtklog";
version = "0.0.1";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = "dtklog";
rev = finalAttrs.version;
hash = "sha256-8c3KL6pjAFPC4jRpOpPEbEDRBMWnDptwBSbEtcQcf5E=";
};
nativeBuildInputs = [
cmake
pkg-config
libsForQt5.wrapQtAppsHook
];
dontWrapQtApps = true;
buildInputs = [
libsForQt5.qtbase
spdlog
] ++ lib.optional withSystemd systemd;
cmakeFlags = [
(lib.cmakeBool "BUILD_WITH_SYSTEMD" withSystemd)
(lib.cmakeFeature "CMAKE_INSTALL_LIBDIR" "lib")
(lib.cmakeFeature "CMAKE_INSTALL_INCLUDEDIR" "include")
];
meta = {
description = "Simple, convinient and thread safe logger for Qt-based C++ apps";
homepage = "https://github.com/linuxdeepin/dtklog";
license = lib.licenses.lgpl21Plus;
platforms = lib.platforms.linux;
maintainers = lib.teams.deepin.members;
};
})