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

42 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchurl, fetchFromGitHub }:
2015-11-16 13:28:03 +00:00
buildGoModule rec {
pname = "grafana";
2020-06-03 16:30:34 +01:00
version = "7.0.2";
2015-11-16 13:28:03 +00:00
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-06-03 16:30:34 +01:00
sha256 = "0ijaljj4c5bvv6z2dzsdr3d1rbza4lw29hy6gh805d01aadyag18";
2015-11-16 13:28:03 +00:00
};
srcStatic = fetchurl {
url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz";
2020-06-03 16:30:34 +01:00
sha256 = "1rfzzsv087pq0fnfz27sddrz29j06bm9m136mkwbhcic8csykndw";
2015-11-16 13:28:03 +00:00
};
vendorSha256 = "00xvpxhnvxdf030978paywl794mlmgqzd94b64hh67946acnbjcl";
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
postInstall = ''
tar -xvf $srcStatic
mkdir -p $out/share/grafana
mv grafana-*/{public,conf,tools} $out/share/grafana/
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 13:30:23 +01:00
homepage = "https://grafana.com";
2020-03-21 19:23:26 +00:00
maintainers = with maintainers; [ offline fpletz willibutz globin ma27 Frostman ];
platforms = platforms.linux;
2015-11-16 13:28:03 +00:00
};
}