nixpkgs-suyu/pkgs/tools/system/netdata/default.nix

38 lines
965 B
Nix
Raw Normal View History

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
};
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
patches = [
./no-files-in-etc-and-var.patch
];
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/etc"
];
2018-11-14 17:01:41 +01:00
postFixup = ''
rm -r $out/sbin
2016-10-14 12:05:42 +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 ];
};
}