agru: init at 0.1.19 (#492883)

This commit is contained in:
Michael Daniels
2026-08-17 22:14:32 +00:00
committed by GitHub
2 changed files with 37 additions and 0 deletions

View File

@@ -12520,6 +12520,13 @@
githubId = 7558482;
name = "Jack Gerrits";
};
jackoe = {
name = "Jack Wines";
email = "nixos@winesj.com";
github = "jackoe";
githubId = 3060163;
matrix = "@noiobeforebedtime:winesj.com";
};
jackr = {
name = "Jack Rosenberg";
email = "nixos@jackr.eu";

View File

@@ -0,0 +1,30 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "agru";
version = "0.1.19";
src = fetchFromGitHub {
owner = "etkecc";
repo = "agru";
rev = "v${finalAttrs.version}";
hash = "sha256-K48f4wDGH7SYy69CYsTjM0WnwUxzWctV1NFR8IB/bYY=";
};
vendorHash = null;
__structuredAttrs = true;
meta = {
description = "Faster ansible-galaxy substitute";
homepage = "github.com/etkecc/";
license = lib.licenses.agpl3Only;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ jackoe ];
mainProgram = "agru";
};
})