nixpkgs/pkgs/tools/misc/grizzly/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
680 B
Nix
Raw Normal View History

2023-07-09 04:04:11 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "grizzly";
2024-05-16 05:32:14 +00:00
version = "0.4.2";
2023-07-09 04:04:11 +00:00
src = fetchFromGitHub {
owner = "grafana";
repo = pname;
rev = "v${version}";
2024-05-16 05:32:14 +00:00
hash = "sha256-UOUBck1GrG3ijUpE3jPaFcC/KtlObaR38u3St8NToTk=";
2023-07-09 04:04:11 +00:00
};
2024-05-16 05:32:14 +00:00
vendorHash = "sha256-lioFmaFzqaxN1wnYJaoHA54to1xGZjaLGaqAFIfTaTs=";
2023-07-09 04:04:11 +00:00
subPackages = [ "cmd/grr" ];
meta = with lib; {
description = "A utility for managing Jsonnet dashboards against the Grafana API";
homepage = "https://grafana.github.io/grizzly/";
license = licenses.asl20;
maintainers = with lib.maintainers; [ nrhtr ];
platforms = platforms.unix;
2023-11-27 01:17:53 +00:00
mainProgram = "grr";
2023-07-09 04:04:11 +00:00
};
}