easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / libcollectdclient / package.nix
blobae8b2dc671fc488143085816e868d72cbda80426
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 = [
21       maintainers.sheenobu
22       maintainers.bjornfor
23     ];
24   };