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

93 lines
3 KiB
Nix
Raw Normal View History

{ lib, stdenv, callPackage, fetchFromGitHub, autoreconfHook, pkg-config
2019-07-03 10:49:29 +00:00
, CoreFoundation, IOKit, libossp_uuid
, curl, libcap, libuuid, lm_sensors, zlib
2020-08-28 08:49:26 +00:00
, nixosTests
2019-07-03 10:49:29 +00:00
, withCups ? false, cups
, withDBengine ? true, libuv, lz4, judy
, withIpmi ? (!stdenv.isDarwin), freeipmi
, withNetfilter ? (!stdenv.isDarwin), libmnl, libnetfilter_acct
, withSsl ? true, openssl
2019-07-04 10:08:11 +00:00
, withDebug ? false
, fetchpatch
2019-07-03 10:49:29 +00:00
}:
2016-04-14 21:43:01 +00:00
2021-01-15 09:19:50 +00:00
with lib;
2019-07-03 10:49:29 +00:00
2020-02-22 07:45:50 +00:00
let
go-d-plugin = callPackage ./go.d.plugin.nix {};
in stdenv.mkDerivation rec {
2021-05-04 17:15:53 +00:00
version = "1.30.1";
pname = "netdata";
2016-04-14 21:43:01 +00:00
2019-12-07 21:04:30 +00:00
src = fetchFromGitHub {
owner = "netdata";
repo = "netdata";
rev = "v${version}";
2021-05-04 17:15:53 +00:00
sha256 = "0cp6gbn38f1cr0jkr64vvwz005cvnwj3hgfxs147wap9w228k46r";
2016-04-14 21:43:01 +00:00
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2019-07-03 10:49:29 +00: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 21:43:01 +00:00
patches = [
# required to prevent plugins from relying on /etc
# and /var
./no-files-in-etc-and-var.patch
# cgroups: fix network interfaces detection when using virsh
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/netdata/netdata/pull/11096.patch";
sha256 = "0f2rd7kgbwbyq9wyn085d213ifvivnpl3qlx1gjrg42rkbi4n8jj";
})
];
2019-10-30 11:34:47 +00:00
NIX_CFLAGS_COMPILE = optionalString withDebug "-O1 -ggdb -DNETDATA_INTERNAL_CHECKS=1";
2019-07-04 10:08:11 +00:00
2020-02-22 07:45:50 +00:00
postInstall = ''
2020-04-14 09:20:00 +00:00
ln -s ${go-d-plugin}/lib/netdata/conf.d/* $out/lib/netdata/conf.d
ln -s ${go-d-plugin}/bin/godplugin $out/libexec/netdata/plugins.d/go.d.plugin
2020-02-22 07:45:50 +00:00
'' + optionalString (!stdenv.isDarwin) ''
# rename this plugin so netdata will look for setuid wrapper
mv $out/libexec/netdata/plugins.d/apps.plugin \
2019-06-26 17:38:01 +00:00
$out/libexec/netdata/plugins.d/apps.plugin.org
mv $out/libexec/netdata/plugins.d/perf.plugin \
$out/libexec/netdata/plugins.d/perf.plugin.org
mv $out/libexec/netdata/plugins.d/slabinfo.plugin \
$out/libexec/netdata/plugins.d/slabinfo.plugin.org
${optionalString withIpmi ''
mv $out/libexec/netdata/plugins.d/freeipmi.plugin \
$out/libexec/netdata/plugins.d/freeipmi.plugin.org
''}
'';
preConfigure = optionalString (!stdenv.isDarwin) ''
2019-03-07 21:01:48 +00: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 16:01:41 +00:00
postFixup = ''
rm -r $out/sbin
2016-10-14 10:05:42 +00:00
'';
2020-08-28 08:49:26 +00:00
passthru.tests.netdata = nixosTests.netdata;
2019-07-03 10:49:29 +00:00
meta = {
2016-04-14 21:43:01 +00:00
description = "Real-time performance monitoring tool";
homepage = "https://www.netdata.cloud/";
license = licenses.gpl3Plus;
2018-11-14 16:01:41 +00:00
platforms = platforms.unix;
maintainers = [ ];
2016-04-14 21:43:01 +00:00
};
}