nixpkgs/pkgs/servers/monitoring/grafana/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomJsSupport ? false, phantomjs2 ? null }:
2015-11-16 13:28:03 +00:00
2016-06-06 00:28:52 +00:00
buildGoPackage rec {
pname = "grafana";
2020-03-21 19:22:51 +00:00
version = "6.7.1";
2019-08-31 07:50:38 +00:00
2015-11-16 13:28:03 +00:00
goPackagePath = "github.com/grafana/grafana";
2019-02-26 19:30:02 +00:00
excludedPackages = [ "release_publisher" ];
2015-11-16 13:28:03 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "grafana";
repo = "grafana";
2020-03-21 19:22:51 +00:00
sha256 = "0isidfnny4rds9mq7gfm3qmsjsg9higiqliri5zy5bc68lz1gnbz";
2015-11-16 13:28:03 +00:00
};
srcStatic = fetchurl {
url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz";
2020-03-21 19:22:51 +00:00
sha256 = "0pa5g9pgifdi49vklcxnip2a156f5x64i9r2pshdg4gxfdqbxkxy";
2015-11-16 13:28:03 +00:00
};
postPatch = ''
substituteInPlace pkg/cmd/grafana-server/main.go \
--replace 'var version = "5.0.0"' 'var version = "${version}"'
'';
2015-11-16 13:28:03 +00:00
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
2015-11-16 13:28:03 +00:00
postInstall = ''
tar -xvf $srcStatic
mkdir -p $bin/share/grafana
2018-03-01 16:07:50 +00:00
mv grafana-*/{public,conf,tools} $bin/share/grafana/
'' + lib.optionalString phantomJsSupport ''
2018-03-01 16:07:50 +00:00
ln -sf ${phantomjs2}/bin/phantomjs $bin/share/grafana/tools/phantomjs/phantomjs
2015-11-16 13:28:03 +00:00
'';
meta = with lib; {
description = "Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB";
license = licenses.asl20;
2019-08-15 12:30:23 +00:00
homepage = "https://grafana.com";
2020-02-06 21:17:37 +00:00
maintainers = with maintainers; [ offline fpletz willibutz globin ma27 ];
platforms = platforms.linux;
2015-11-16 13:28:03 +00:00
};
}