Merge pull request #242413 from nrhtr/add-grizzly
grizzly: init at 0.2.0
This commit is contained in:
@@ -12428,6 +12428,12 @@
|
||||
githubId = 15707703;
|
||||
name = "Helmi Nour";
|
||||
};
|
||||
nrhtr = {
|
||||
email = "jeremy@jenga.xyz";
|
||||
github = "nrhtr";
|
||||
githubId = 74261;
|
||||
name = "Jeremy Parker";
|
||||
};
|
||||
nshalman = {
|
||||
email = "nahamu@gmail.com";
|
||||
github = "nshalman";
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "grizzly";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "grafana";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-6z/6QZlCm4mRMKAVzLnOokv8ib7Y/7a17ojjMfeoJ4w=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-DDYhdRPcD5hfSW9nRmCWpsrVmIEU1sBoVvFz5Begx8w=";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
@@ -1770,6 +1770,8 @@ with pkgs;
|
||||
|
||||
gp-saml-gui = python3Packages.callPackage ../tools/networking/gp-saml-gui { };
|
||||
|
||||
grizzly = callPackage ../tools/misc/grizzly { };
|
||||
|
||||
guestfs-tools = callPackage ../tools/virtualization/guestfs-tools { };
|
||||
|
||||
fabs = callPackage ../tools/backup/fabs { };
|
||||
|
||||
Reference in New Issue
Block a user