diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 3656e5a5e4a1..635730c98604 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -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"; diff --git a/pkgs/tools/misc/grizzly/default.nix b/pkgs/tools/misc/grizzly/default.nix new file mode 100644 index 000000000000..a9b7bde2e7bd --- /dev/null +++ b/pkgs/tools/misc/grizzly/default.nix @@ -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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 361830c72f5c..418a9422a95c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };