Merge pull request #242413 from nrhtr/add-grizzly

grizzly: init at 0.2.0
This commit is contained in:
Franz Pletz
2023-08-10 05:43:39 +02:00
committed by GitHub
3 changed files with 36 additions and 0 deletions
+6
View File
@@ -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";
+28
View File
@@ -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;
};
}
+2
View File
@@ -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 { };