linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libcollectdclient / default.nix
blob0bf654ee963cb6a27e161a95f56cdd5cfeda85b8
1 { lib, collectd }:
2 with lib;
4 collectd.overrideAttrs (oldAttrs: {
5   name = "libcollectdclient-${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   };