dfl-applications: init at 0.3.0

This commit is contained in:
arthsmn 2025-04-21 16:32:30 -03:00
parent c9342e3dac
commit b1ed2993a7
No known key found for this signature in database

View file

@ -0,0 +1,49 @@
{
lib,
stdenv,
fetchFromGitLab,
meson,
ninja,
pkg-config,
qt6,
dfl-ipc,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "dfl-applications";
version = "0.3.0";
src = fetchFromGitLab {
owner = "desktop-frameworks";
repo = "applications";
rev = "v${finalAttrs.version}";
hash = "sha256-VDkJkrkhjWi61YD7qNQSF9/ctXtvVf+nh/zUVxAAE4Q=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
qt6.qtbase
dfl-ipc
];
dontWrapQtApps = true;
outputs = [
"out"
"dev"
];
meta = {
description = "Library provides a thin wrapper around QApplication, QGuiApplication and QCoreApplication";
homepage = "https://gitlab.com/desktop-frameworks/applications";
changelog = "https://gitlab.com/desktop-frameworks/applications/-/blob/${finalAttrs.src.rev}/ChangeLog";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ arthsmn ];
platforms = lib.platforms.linux;
};
})