nixpkgs/pkgs/servers/monitoring/newrelic-sysmond/default.nix

27 lines
779 B
Nix
Raw Normal View History

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