nixpkgs/pkgs/development/libraries/libcollectdclient/default.nix

23 lines
679 B
Nix
Raw Normal View History

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