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