python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libcollectdclient / default.nix
blob919ddcd3f0668920c7e749abc421b809ea1d6b92
1 { lib, collectd }:
2 with lib;
4 collectd.overrideAttrs (oldAttrs: {
5   pname = "libcollectdclient";
6   inherit (collectd) version;
7   buildInputs = [ ];
9   configureFlags = (oldAttrs.configureFlags or []) ++ [
10     "--disable-daemon"
11     "--disable-all-plugins"
12   ];
14   postInstall = "rm -rf $out/{bin,etc,sbin,share}";
16   meta = with lib; {
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 ];
22   };