netdata: 1.0.0 -> 1.4.0

This commit is contained in:
derchris
2016-10-14 12:05:42 +02:00
parent 49e3c7c9dc
commit 0acd3b3b42
2 changed files with 10 additions and 24 deletions
+10 -5
View File
@@ -1,19 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook, zlib, pkgconfig }:
{ stdenv, fetchFromGitHub, autoreconfHook, zlib, pkgconfig, libuuid }:
stdenv.mkDerivation rec{
version = "1.0.0";
version = "1.4.0";
name = "netdata-${version}";
src = fetchFromGitHub {
rev = "v${version}";
owner = "firehol";
repo = "netdata";
sha256 = "03107ny98zks05p44jzypkk4lw8lbvmqja5b537ln6cnrgp20yvq";
sha256 = "1wknxci2baj6f7rl8z8j7haaz122jmbb74aw7i3xbj2y61cs58n8";
};
buildInputs = [ autoreconfHook zlib pkgconfig ];
buildInputs = [ autoreconfHook zlib pkgconfig libuuid ];
patches = [ ./web_access.patch ];
preConfigure = ''
export ZLIB_CFLAGS=" "
export ZLIB_LIBS="-lz"
export UUID_CFLAGS=" "
export UUID_LIBS="-luuid"
'';
meta = with stdenv.lib; {
description = "Real-time performance monitoring tool";