60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
29 lines
680 B
Nix
29 lines
680 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "grizzly";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grafana";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-d/DUazWBT96+dnwVXo667RHALUM2FHxXoI54fFU2HZw=";
|
|
};
|
|
|
|
vendorHash = "sha256-8myfB2LKDPUCFV9GBSXrBo9E+WrCOCm0ZHKTQ1dEb9U=";
|
|
|
|
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;
|
|
mainProgram = "grr";
|
|
};
|
|
}
|