2014-12-22 20:13:08 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-18 22:03:30 +01:00
|
|
|
name = "newrelic-sysmond-${version}";
|
|
|
|
version = "2.3.0.132";
|
2014-12-22 20:13:08 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://download.newrelic.com/server_monitor/archive/${version}/newrelic-sysmond-${version}-linux.tar.gz";
|
2016-07-18 21:18:05 +01:00
|
|
|
sha256 = "0cdvffdsadfahfn1779zjfawz6l77awab3g9mw43vsba1568jh4f";
|
2014-12-22 20:13:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -v -m755 daemon/nrsysmond.x64 $out/bin/nrsysmond
|
2014-12-26 17:28:15 +00:00
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2014-12-22 20:13:08 +00:00
|
|
|
$out/bin/nrsysmond
|
|
|
|
'';
|
|
|
|
|
2016-07-18 22:03:30 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-22 20:13:08 +00:00
|
|
|
description = "System-wide monitoring for newrelic";
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = https://newrelic.com/;
|
2016-07-18 22:03:30 +01:00
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ lnl7 ];
|
2014-12-22 20:13:08 +00:00
|
|
|
};
|
|
|
|
}
|