2016-07-15 06:26:31 -07:00
|
|
|
{ lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomjs2 }:
|
2015-11-16 05:28:03 -08:00
|
|
|
|
2016-06-05 17:28:52 -07:00
|
|
|
buildGoPackage rec {
|
2019-08-06 08:11:56 -07:00
|
|
|
version = "6.3.0";
|
2018-02-27 05:07:49 -08:00
|
|
|
name = "grafana-${version}";
|
2015-11-16 05:28:03 -08:00
|
|
|
goPackagePath = "github.com/grafana/grafana";
|
|
|
|
|
2019-02-26 11:30:02 -08:00
|
|
|
excludedPackages = [ "release_publisher" ];
|
|
|
|
|
2015-11-16 05:28:03 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "grafana";
|
|
|
|
repo = "grafana";
|
2019-08-06 08:11:56 -07:00
|
|
|
sha256 = "0k95w7j2iq6v82d8701cl2zcszl8qfplpnhjfijr3djahbwbkls3";
|
2015-11-16 05:28:03 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
srcStatic = fetchurl {
|
2018-06-27 08:18:49 -07:00
|
|
|
url = "https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-${version}.linux-amd64.tar.gz";
|
2019-08-06 08:11:56 -07:00
|
|
|
sha256 = "01q1d8fpf3dfrc11wzzi9i6939906l4s0kkl9v0c91p3qx3rfni9";
|
2015-11-16 05:28:03 -08:00
|
|
|
};
|
|
|
|
|
2018-06-27 08:18:49 -07:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pkg/cmd/grafana-server/main.go \
|
|
|
|
--replace 'var version = "5.0.0"' 'var version = "${version}"'
|
|
|
|
'';
|
|
|
|
|
2015-11-16 05:28:03 -08:00
|
|
|
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
|
2018-06-27 08:18:49 -07:00
|
|
|
|
2015-11-16 05:28:03 -08:00
|
|
|
postInstall = ''
|
|
|
|
tar -xvf $srcStatic
|
|
|
|
mkdir -p $bin/share/grafana
|
2018-03-01 08:07:50 -08:00
|
|
|
mv grafana-*/{public,conf,tools} $bin/share/grafana/
|
|
|
|
ln -sf ${phantomjs2}/bin/phantomjs $bin/share/grafana/tools/phantomjs/phantomjs
|
2015-11-16 05:28:03 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB";
|
|
|
|
license = licenses.asl20;
|
2017-09-05 10:01:01 -07:00
|
|
|
homepage = https://grafana.org/;
|
|
|
|
maintainers = with maintainers; [ offline fpletz willibutz ];
|
2015-11-18 02:33:50 -08:00
|
|
|
platforms = platforms.linux;
|
2015-11-16 05:28:03 -08:00
|
|
|
};
|
|
|
|
}
|