mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
72 lines
2.2 KiB
Nix
72 lines
2.2 KiB
Nix
{ stdenv, fetchurl, autoreconfHook, pkgconfig
|
|
, 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
|
|
, withDebug ? false
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.16.0";
|
|
pname = "netdata";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/netdata/netdata/releases/download/v${version}/netdata-v${version}.tar.gz";
|
|
sha256 = "0kwbrkv7g9m7l580myd2r8bpxqn6fxmx5vd6xh7x94wygfffhann";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
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 ];
|
|
|
|
patches = [
|
|
./no-files-in-etc-and-var.patch
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = optional withDebug "-O1 -ggdb -DNETDATA_INTERNAL_CHECKS=1";
|
|
|
|
postInstall = 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
|
|
${optionalString withIpmi ''
|
|
mv $out/libexec/netdata/plugins.d/freeipmi.plugin \
|
|
$out/libexec/netdata/plugins.d/freeipmi.plugin.org
|
|
''}
|
|
'';
|
|
|
|
preConfigure = optionalString (!stdenv.isDarwin) ''
|
|
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"
|
|
];
|
|
|
|
postFixup = ''
|
|
rm -r $out/sbin
|
|
'';
|
|
|
|
meta = {
|
|
description = "Real-time performance monitoring tool";
|
|
homepage = https://my-netdata.io/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.lethalman ];
|
|
};
|
|
|
|
}
|