42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomjs2 }:
|
|
|
|
buildGoPackage rec {
|
|
version = "5.2.2";
|
|
name = "grafana-${version}";
|
|
goPackagePath = "github.com/grafana/grafana";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "grafana";
|
|
repo = "grafana";
|
|
sha256 = "17w8ljq4p1sxcdpsiz4221gwhi3ykggpisnx1wdw22g2160q9sdj";
|
|
};
|
|
|
|
srcStatic = fetchurl {
|
|
url = "https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-${version}.linux-amd64.tar.gz";
|
|
sha256 = "1frbk13sww3sw09mpkijii1kf7m19hqg58ps8gvs4dvxg12bbv3l";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pkg/cmd/grafana-server/main.go \
|
|
--replace 'var version = "5.0.0"' 'var version = "${version}"'
|
|
'';
|
|
|
|
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
|
|
|
|
postInstall = ''
|
|
tar -xvf $srcStatic
|
|
mkdir -p $bin/share/grafana
|
|
mv grafana-*/{public,conf,tools} $bin/share/grafana/
|
|
ln -sf ${phantomjs2}/bin/phantomjs $bin/share/grafana/tools/phantomjs/phantomjs
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB";
|
|
license = licenses.asl20;
|
|
homepage = https://grafana.org/;
|
|
maintainers = with maintainers; [ offline fpletz willibutz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|