Merge pull request #93118 from symphorien/kcollectd
kcollectd: init at 0.11.99.0
This commit is contained in:
commit
ab6c5e5db9
56
pkgs/tools/misc/kcollectd/default.nix
Normal file
56
pkgs/tools/misc/kcollectd/default.nix
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
{ 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.11.99.0";
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "aerusso";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0h4ymvzihzbmyv3z0bp28g94wxc6c7lgi3my0xbka3advxr811gn";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -5417,6 +5417,8 @@ in
|
|||||||
|
|
||||||
file-rename = callPackage ../tools/filesystems/file-rename { };
|
file-rename = callPackage ../tools/filesystems/file-rename { };
|
||||||
|
|
||||||
|
kcollectd = libsForQt5.callPackage ../tools/misc/kcollectd {};
|
||||||
|
|
||||||
kea = callPackage ../tools/networking/kea { };
|
kea = callPackage ../tools/networking/kea { };
|
||||||
|
|
||||||
keysmith = libsForQt5.callPackage ../tools/security/keysmith { };
|
keysmith = libsForQt5.callPackage ../tools/security/keysmith { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user