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

44 lines
1.2 KiB
Nix
Raw Normal View History

2018-11-14 16:01:41 +00:00
{ stdenv, fetchurl, autoreconfHook, pkgconfig, zlib, libuuid, libossp_uuid, CoreFoundation, IOKit }:
2016-04-14 21:43:01 +00:00
stdenv.mkDerivation rec{
version = "1.11.1";
2016-04-14 21:43:01 +00:00
name = "netdata-${version}";
2018-11-14 16:01:41 +00:00
src = fetchurl {
url = "https://github.com/netdata/netdata/releases/download/v${version}/netdata-v${version}.tar.gz";
sha256 = "0djph4586cc14vavj6za6k255lscf3b415dx8k45q3nsc2hb4l01";
2016-04-14 21:43:01 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2018-11-14 16:01:41 +00:00
buildInputs = [ zlib ]
++ (if stdenv.isDarwin then [ libossp_uuid CoreFoundation IOKit ] else [ libuuid ]);
2016-04-14 21:43:01 +00:00
patches = [
./no-files-in-etc-and-var.patch
];
postInstall = stdenv.lib.optionalString (!stdenv.isDarwin) ''
# rename this plugin so netdata will look for setuid wrapper
mv $out/libexec/netdata/plugins.d/apps.plugin \
$out/libexec/netdata/plugins.d/apps.plugin.org
'';
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/etc"
];
2018-11-14 16:01:41 +00:00
postFixup = ''
rm -r $out/sbin
2016-10-14 10:05:42 +00:00
'';
2016-04-14 21:43:01 +00:00
meta = with stdenv.lib; {
description = "Real-time performance monitoring tool";
2018-11-14 16:01:41 +00:00
homepage = https://my-netdata.io/;
2016-04-14 21:43:01 +00:00
license = licenses.gpl3;
2018-11-14 16:01:41 +00:00
platforms = platforms.unix;
2016-04-14 21:43:01 +00:00
maintainers = [ maintainers.lethalman ];
};
}