mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
libcollectdclient: init at 5.5.0
This commit is contained in:
parent
38579a1cc9
commit
6f4458d16f
30
pkgs/development/libraries/libcollectdclient/default.nix
Normal file
30
pkgs/development/libraries/libcollectdclient/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user