depot/third_party/nixpkgs/pkgs/by-name/li/libcollectdclient/package.nix

25 lines
697 B
Nix

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