1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00
nixpkgs/pkgs/tools/system/netdata/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

2016-10-14 11:05:42 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, zlib, pkgconfig, libuuid }:
2016-04-14 22:43:01 +01:00
stdenv.mkDerivation rec{
2016-10-14 11:05:42 +01:00
version = "1.4.0";
2016-04-14 22:43:01 +01:00
name = "netdata-${version}";
src = fetchFromGitHub {
rev = "v${version}";
owner = "firehol";
repo = "netdata";
2016-10-14 11:05:42 +01:00
sha256 = "1wknxci2baj6f7rl8z8j7haaz122jmbb74aw7i3xbj2y61cs58n8";
2016-04-14 22:43:01 +01:00
};
2016-10-14 11:05:42 +01:00
buildInputs = [ autoreconfHook zlib pkgconfig libuuid ];
2016-04-14 22:43:01 +01:00
# Allow UI to load when running as non-root
patches = [ ./web_access.patch ];
# Build will fail trying to create /var/{cache,lib,log}/netdata without this
postPatch = ''
sed -i '/dist_.*_DATA = \.keep/d' src/Makefile.am
'';
configureFlags = [
"--localstatedir=/var"
];
# App fails on runtime if the default config file is not detected
# The upstream installer does prepare an empty file too
postInstall = ''
touch $out/etc/netdata/netdata.conf
2016-10-14 11:05:42 +01:00
'';
2016-04-14 22:43:01 +01:00
meta = with stdenv.lib; {
description = "Real-time performance monitoring tool";
homepage = http://netdata.firehol.org;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
};
}