nixpkgs/pkgs/tools/misc/kcollectd/default.nix
2024-03-15 12:18:36 +00:00

58 lines
1001 B
Nix

{ lib
, fetchFromGitLab
, mkDerivation
, qtbase
, cmake
, kconfig
, kio
, kiconthemes
, kxmlgui
, ki18n
, kguiaddons
, extra-cmake-modules
, boost
, shared-mime-info
, rrdtool
, breeze-icons
}:
mkDerivation rec {
pname = "kcollectd";
version = "0.12.1";
src = fetchFromGitLab {
owner = "aerusso";
repo = pname;
rev = "v${version}";
sha256 = "sha256-bUVL5eRQ5UkSZo562pnyEcj0fVoSC5WHRq4BfN67jEM=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
shared-mime-info
];
buildInputs = [
qtbase
kconfig
kio
kxmlgui
kiconthemes
ki18n
kguiaddons
boost
rrdtool
# otherwise some buttons are blank
breeze-icons
];
meta = with lib; {
description = "A graphical frontend to collectd";
homepage = "https://www.antonioerusso.com/projects/kcollectd/";
maintainers = [ maintainers.symphorien ];
license = [ lib.licenses.gpl3Plus ];
platforms = lib.platforms.linux;
mainProgram = "kcollectd";
};
}