2021-01-25 09:26:54 +01:00
|
|
|
{ lib, collectd }:
|
2021-01-21 18:00:13 +01:00
|
|
|
with lib;
|
2016-03-17 04:57:32 +01:00
|
|
|
|
2018-06-09 02:10:22 +02:00
|
|
|
collectd.overrideAttrs (oldAttrs: {
|
2022-02-23 21:00:06 +01:00
|
|
|
pname = "libcollectdclient";
|
|
|
|
inherit (collectd) version;
|
2016-03-18 04:25:27 +01:00
|
|
|
buildInputs = [ ];
|
2016-03-17 04:57:32 +01:00
|
|
|
|
2018-12-21 13:40:40 +01:00
|
|
|
configureFlags = (oldAttrs.configureFlags or []) ++ [
|
2017-12-20 23:37:37 +01:00
|
|
|
"--disable-daemon"
|
|
|
|
"--disable-all-plugins"
|
2016-03-17 04:57:32 +01:00
|
|
|
];
|
|
|
|
|
2017-12-20 23:37:37 +01:00
|
|
|
postInstall = "rm -rf $out/{bin,etc,sbin,share}";
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2016-03-17 04:57:32 +01:00
|
|
|
description = "C Library for collectd, a daemon which collects system performance statistics periodically";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://collectd.org";
|
2016-03-17 04:57:32 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux; # TODO: collectd may be linux but the C client may be more portable?
|
|
|
|
maintainers = [ maintainers.sheenobu maintainers.bjornfor ];
|
|
|
|
};
|
2018-06-09 02:10:22 +02:00
|
|
|
})
|