Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / grafana-dash-n-grab / default.nix
blob49e85ba7dac9fdf4707da668b8b8986302f0eca3
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "grafana-dash-n-grab";
5   version = "0.6.0";
7   src = fetchFromGitHub {
8     rev = "v${version}";
9     owner = "esnet";
10     repo = "gdg";
11     sha256 = "sha256-47zKZnq7ADIAti4fjGj6ctoM5Qo6UzAX1aLf87TknkQ=";
12   };
14   vendorHash = "sha256-XJSi+p++1QFfGk57trfIgyv0nWUm38H0n/qbJgV8lEM=";
16   ldflags = [
17     "-s"
18     "-w"
19     "-X main.Version=${version}"
20     "-X github.com/esnet/gdg/version.GitCommit=${src.rev}"
21   ];
23   # The test suite tries to communicate with a running version of grafana locally. This fails if
24   # you don't have grafana running.
25   doCheck = false;
27   meta = with lib; {
28     description = "Grafana Dash-n-Grab (gdg) -- backup and restore Grafana dashboards, datasources, and other entities";
29     license = licenses.bsd3;
30     homepage = "https://github.com/esnet/gdg";
31     maintainers = with maintainers; teams.bitnomial.members;
32     mainProgram = "gdg";
33     changelog =
34       "https://github.com/esnet/gdg/releases/tag/v${version}";
35   };