Merge pull request #17077 from LnL7/fix-newrelic-sysmond

newrelic-sysmond: 1.5.1 -> 2.3.0
This commit is contained in:
Graham Christensen 2016-07-21 20:14:05 +00:00 committed by GitHub
commit 8f4dcd19f6

View file

@ -1,14 +1,12 @@
{ stdenv, fetchurl }:
assert stdenv.system == "x86_64-linux";
stdenv.mkDerivation rec {
name = "newrelic-sysmond-1.5.1.93";
name = "newrelic-sysmond-${version}";
version = "2.3.0.132";
src = fetchurl {
url = "http://download.newrelic.com/server_monitor/release/newrelic-sysmond-1.5.1.93-linux.tar.gz";
sha256 = "1bfwyczcf7pvji8lx566jxgy8dhyf1gmqmi64lj10673a86axnwz";
url = "http://download.newrelic.com/server_monitor/archive/${version}/newrelic-sysmond-${version}-linux.tar.gz";
sha256 = "0cdvffdsadfahfn1779zjfawz6l77awab3g9mw43vsba1568jh4f";
};
installPhase = ''
@ -18,11 +16,11 @@ stdenv.mkDerivation rec {
$out/bin/nrsysmond
'';
meta = {
homepage = http://newrelic.com/;
meta = with stdenv.lib; {
description = "System-wide monitoring for newrelic";
license = stdenv.lib.licenses.unfree;
homepage = http://newrelic.com/;
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ lnl7 ];
};
}