2020-08-20 09:00:54 +01:00
|
|
|
{ lib, buildGoModule, fetchurl, fetchFromGitHub, nixosTests }:
|
2015-11-16 13:28:03 +00:00
|
|
|
|
2020-05-23 01:04:18 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "grafana";
|
2020-08-26 10:14:13 +01:00
|
|
|
version = "7.1.5";
|
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-08-26 10:14:13 +01:00
|
|
|
sha256 = "089z2x6jhiv5cx70vm7f1pyj5avappnaxrwah8jbnlkaz2kisp79";
|
2015-11-16 13:28:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
srcStatic = fetchurl {
|
2019-08-29 16:16:47 +01:00
|
|
|
url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz";
|
2020-08-26 10:14:13 +01:00
|
|
|
sha256 = "0l1lw3y5w4s6qfkmclzc6h6hqwxqmxlppnwsq1zpm2hmrndy440j";
|
2015-11-16 13:28:03 +00:00
|
|
|
};
|
|
|
|
|
2020-08-26 10:14:13 +01:00
|
|
|
vendorSha256 = "0i0qdfh6cjdjg2mrrabm42427aaxs6a90ydb554ds14k6r4jdf8b";
|
2020-08-04 01:26:27 +01:00
|
|
|
|
2018-06-27 16:18:49 +01: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
|
|
|
postInstall = ''
|
|
|
|
tar -xvf $srcStatic
|
2020-04-28 02:50:57 +01:00
|
|
|
mkdir -p $out/share/grafana
|
|
|
|
mv grafana-*/{public,conf,tools} $out/share/grafana/
|
2015-11-16 13:28:03 +00:00
|
|
|
'';
|
|
|
|
|
2020-08-20 09:00:54 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) 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 ];
|
2015-11-18 10:33:50 +00:00
|
|
|
platforms = platforms.linux;
|
2015-11-16 13:28:03 +00:00
|
|
|
};
|
|
|
|
}
|