Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
734 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitLab,
udisks2,
qt6,
cmake,
ninja,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libcsys";
version = "5.0.0";
src = fetchFromGitLab {
owner = "cubocore";
repo = "libcsys";
tag = "v${finalAttrs.version}";
hash = "sha256-53vneIR2uy3VtbnOlEHl1anj3nXA3MU2KQt1PWm7KGI=";
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
qt6.qtbase
udisks2
];
dontWrapQtApps = true;
meta = {
description = "Library for managing drive and getting system resource information in real time";
homepage = "https://gitlab.com/cubocore/libcsys";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = lib.platforms.linux;
};
})