mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
694 B
Nix
23 lines
694 B
Nix
{ stdenv, collectd }:
|
|
with stdenv.lib;
|
|
|
|
collectd.overrideAttrs (oldAttrs: {
|
|
name = "libcollectdclient-${collectd.version}";
|
|
buildInputs = [ ];
|
|
|
|
configureFlags = (oldAttrs.configureFlags or []) ++ [
|
|
"--disable-daemon"
|
|
"--disable-all-plugins"
|
|
];
|
|
|
|
postInstall = "rm -rf $out/{bin,etc,sbin,share}";
|
|
|
|
meta = with stdenv.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 ];
|
|
};
|
|
})
|