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-01-07 04:46:37 +00:00
version = "0.3.0";
2023-07-09 04:04:11 +00:00
src = fetchFromGitHub {
owner = "grafana";
repo = pname;
rev = "v${version}";
2024-01-07 04:46:37 +00:00
hash = "sha256-Yc15mD21Ohga7Pw+iowegkI2DWbKIZOZQ2vkKOdsKUk=";
2023-07-09 04:04:11 +00:00
};
2024-01-07 04:46:37 +00:00
vendorHash = "sha256-8myfB2LKDPUCFV9GBSXrBo9E+WrCOCm0ZHKTQ1dEb9U=";
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
};
}