3
0
Fork 0
forked from mirrors/nixpkgs

Add collectd 5.4.0

This commit is contained in:
Rob Vermaas 2013-08-30 11:58:02 +02:00
parent 539304754f
commit bd6eba997f
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "collectd-5.4.0";
src = fetchurl {
url = "http://collectd.org/files/${name}.tar.bz2";
sha256 = "0gljf5c60q6i0nrii6addxy1p76qqixww8zy17a7a1zil6a3i5wh";
};
meta = {
homepage = http://collectd.org;
description = "collectd is a daemon which collects system performance statistics periodically";
platforms = stdenv.lib.platforms.linux;
license = "GPLv2";
};
}

View file

@ -631,6 +631,8 @@ let
convertlit = callPackage ../tools/text/convertlit { };
collectd = callPackage ../tools/system/collectd { };
colormake = callPackage ../development/tools/build-managers/colormake { };
cowsay = callPackage ../tools/misc/cowsay { };