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

45 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomjs2 }:
2015-11-16 13:28:03 +00:00
2016-06-06 00:28:52 +00:00
buildGoPackage rec {
pname = "grafana";
2020-01-15 14:13:30 +00:00
version = "6.5.3";
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-01-15 14:13:30 +00:00
sha256 = "1ks951b3ar1wdpbxn8ak74m8zh02d3lbmk6mphwni68c019ymahi";
2015-11-16 13:28:03 +00:00
};
srcStatic = fetchurl {
url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz";
2020-01-15 14:13:30 +00:00
sha256 = "1gjj0h7kz4lan00ka5kg901l3nyzswnjfr0slqy08bl4svqpizh2";
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/
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";
maintainers = with maintainers; [ offline fpletz willibutz globin ];
platforms = platforms.linux;
2015-11-16 13:28:03 +00:00
};
}