Unverified Commit ec886625 authored by Franz Pletz's avatar Franz Pletz Committed by GitHub
Browse files

Merge pull request #242413 from nrhtr/add-grizzly

grizzly: init at 0.2.0
parents 21586c30 361004bc
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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 { };