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

74 lines
2.2 KiB
Nix
Raw Normal View History

2019-12-07 22:04:30 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
2019-07-03 12:49:29 +02:00
, CoreFoundation, IOKit, libossp_uuid
, curl, libcap, libuuid, lm_sensors, zlib
, withCups ? false, cups
, withDBengine ? true, libuv, lz4, judy
, withIpmi ? (!stdenv.isDarwin), freeipmi
, withNetfilter ? (!stdenv.isDarwin), libmnl, libnetfilter_acct
, withSsl ? true, openssl
2019-07-04 12:08:11 +02:00
, withDebug ? false
2019-07-03 12:49:29 +02:00
}:
2016-04-14 23:43:01 +02:00
2019-07-03 12:49:29 +02:00
with stdenv.lib;
stdenv.mkDerivation rec {
2019-12-07 22:04:30 +01:00
version = "1.19.0";
pname = "netdata";
2016-04-14 23:43:01 +02:00
2019-12-07 22:04:30 +01:00
src = fetchFromGitHub {
owner = "netdata";
repo = "netdata";
rev = "v${version}";
sha256 = "1s6kzx4xh8b6v7ki8h2mfzprj5rxvlgx2md20cr8c0v81qpz3q3q";
2016-04-14 23:43:01 +02:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2019-07-03 12:49:29 +02:00
buildInputs = [ curl.dev zlib.dev ]
++ optionals stdenv.isDarwin [ CoreFoundation IOKit libossp_uuid ]
++ optionals (!stdenv.isDarwin) [ libcap.dev libuuid.dev ]
++ optionals withCups [ cups ]
++ optionals withDBengine [ libuv lz4.dev judy ]
++ optionals withIpmi [ freeipmi ]
++ optionals withNetfilter [ libmnl libnetfilter_acct ]
++ optionals withSsl [ openssl.dev ];
2016-04-14 23:43:01 +02:00
patches = [
./no-files-in-etc-and-var.patch
];
2019-10-30 12:34:47 +01:00
NIX_CFLAGS_COMPILE = optionalString withDebug "-O1 -ggdb -DNETDATA_INTERNAL_CHECKS=1";
2019-07-04 12:08:11 +02:00
2019-07-03 12:49:29 +02:00
postInstall = optionalString (!stdenv.isDarwin) ''
# rename this plugin so netdata will look for setuid wrapper
mv $out/libexec/netdata/plugins.d/apps.plugin \
2019-06-26 19:38:01 +02:00
$out/libexec/netdata/plugins.d/apps.plugin.org
${optionalString withIpmi ''
mv $out/libexec/netdata/plugins.d/freeipmi.plugin \
$out/libexec/netdata/plugins.d/freeipmi.plugin.org
''}
'';
2019-07-03 12:49:29 +02:00
preConfigure = optionalString (!stdenv.isDarwin) ''
2019-03-07 22:01:48 +01:00
substituteInPlace collectors/python.d.plugin/python_modules/third_party/lm_sensors.py \
--replace 'ctypes.util.find_library("sensors")' '"${lm_sensors.out}/lib/libsensors${stdenv.hostPlatform.extensions.sharedLibrary}"'
'';
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
'';
2019-07-03 12:49:29 +02:00
meta = {
2016-04-14 23:43:01 +02:00
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 ];
};
}