4 collectd.overrideAttrs (oldAttrs: {
5 pname = "libcollectdclient";
6 inherit (collectd) version;
9 configureFlags = (oldAttrs.configureFlags or []) ++ [
11 "--disable-all-plugins"
14 postInstall = "rm -rf $out/{bin,etc,sbin,share}";
17 description = "C Library for collectd, a daemon which collects system performance statistics periodically";
18 homepage = "http://collectd.org";
19 license = licenses.gpl2;
20 platforms = platforms.linux; # TODO: collectd may be linux but the C client may be more portable?
21 maintainers = [ maintainers.sheenobu maintainers.bjornfor ];