2018-11-14 17:01:41 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, zlib, libuuid, libossp_uuid, CoreFoundation, IOKit }:
|
2016-04-14 23:43:01 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec{
|
2018-11-14 17:01:41 +01:00
|
|
|
version = "1.11.0";
|
2016-04-14 23:43:01 +02:00
|
|
|
name = "netdata-${version}";
|
|
|
|
|
2018-11-14 17:01:41 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/netdata/netdata/releases/download/v${version}/netdata-v${version}.tar.gz";
|
|
|
|
sha256 = "17b14w34jif6bviw3s81imbazkvvafwxff7d5zjy6wicq88q8b64";
|
2016-04-14 23:43:01 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2018-11-14 17:01:41 +01:00
|
|
|
buildInputs = [ zlib ]
|
|
|
|
++ (if stdenv.isDarwin then [ libossp_uuid CoreFoundation IOKit ] else [ libuuid ]);
|
2016-04-14 23:43:01 +02:00
|
|
|
|
2018-10-12 10:53:36 +02:00
|
|
|
patches = [
|
|
|
|
./no-files-in-etc-and-var.patch
|
|
|
|
];
|
2016-10-25 16:23:19 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2018-10-12 10:53:36 +02:00
|
|
|
"--sysconfdir=/etc"
|
2016-10-25 16:23:19 +02:00
|
|
|
];
|
|
|
|
|
2018-11-14 17:01:41 +01:00
|
|
|
postFixup = ''
|
|
|
|
rm -r $out/sbin
|
2016-10-14 12:05:42 +02:00
|
|
|
'';
|
2016-04-17 11:15:59 +02:00
|
|
|
|
2016-04-14 23:43:01 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Real-time performance monitoring tool";
|
2018-11-14 17:01:41 +01:00
|
|
|
homepage = https://my-netdata.io/;
|
2016-04-14 23:43:01 +02:00
|
|
|
license = licenses.gpl3;
|
2018-11-14 17:01:41 +01:00
|
|
|
platforms = platforms.unix;
|
2016-04-14 23:43:01 +02:00
|
|
|
maintainers = [ maintainers.lethalman ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|