libcollectdclient: init at 5.5.0

wip/yesman
Sheena Artrip 8 years ago
parent 38579a1cc9
commit 6f4458d16f
  1. 30
      pkgs/development/libraries/libcollectdclient/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,30 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "5.5.0";
name = "libcollectdclient-${version}";
tarname = "collectd-${version}";
src = fetchurl {
url = "http://collectd.org/files/${tarname}.tar.bz2";
sha256 = "847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88";
};
configureFlags = [
"--without-daemon"
];
makeFlags = [
"-C src/libcollectdclient/"
];
NIX_CFLAGS_COMPILE = "-Wno-error=cpp";
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 ];
};
}

@ -7407,6 +7407,8 @@ let
libcangjie = callPackage ../development/libraries/libcangjie { };
libcollectdclient = callPackage ../development/libraries/libcollectdclient { };
libcredis = callPackage ../development/libraries/libcredis { };
libctemplate = callPackage ../development/libraries/libctemplate { };

Loading…
Cancel
Save