Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libcollectdclient / default.nix
blob41c5565482fe7293007406c2eb38b79e767f2c7c
1 { lib, collectd }:
3 collectd.overrideAttrs (oldAttrs: {
4   pname = "libcollectdclient";
5   inherit (collectd) version;
6   buildInputs = [ ];
8   configureFlags = (oldAttrs.configureFlags or []) ++ [
9     "--disable-daemon"
10     "--disable-all-plugins"
11   ];
13   postInstall = "rm -rf $out/{bin,etc,sbin,share}";
15   meta = with lib; {
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 ];
21   };