summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorRob Vermaas <rob.vermaas@gmail.com>2013-08-30 11:58:02 +0200
committerRob Vermaas <rob.vermaas@gmail.com>2013-08-30 11:58:02 +0200
commitbd6eba997f4531920fdf3706bce24c4f4a2814fd (patch)
treec15114bb6a73131171b03edd302821532f51b7b8 /pkgs/tools/system
parent539304754fc145355fb603f941b9a3390ec7e118 (diff)
downloadnixlib-bd6eba997f4531920fdf3706bce24c4f4a2814fd.tar
nixlib-bd6eba997f4531920fdf3706bce24c4f4a2814fd.tar.gz
nixlib-bd6eba997f4531920fdf3706bce24c4f4a2814fd.tar.bz2
nixlib-bd6eba997f4531920fdf3706bce24c4f4a2814fd.tar.lz
nixlib-bd6eba997f4531920fdf3706bce24c4f4a2814fd.tar.xz
nixlib-bd6eba997f4531920fdf3706bce24c4f4a2814fd.tar.zst
nixlib-bd6eba997f4531920fdf3706bce24c4f4a2814fd.zip
Add collectd 5.4.0
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/collectd/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix
new file mode 100644
index 000000000000..7da45c596ef4
--- /dev/null
+++ b/pkgs/tools/system/collectd/default.nix
@@ -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";
+  };
+}