Skip to content

Commit 6aaa5cd

Browse files
committed
agru: init at 0.1.19
1 parent 2201aaa commit 6aaa5cd

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

pkgs/by-name/ag/agru/package.nix

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
}:
6+
7+
buildGoModule (finalAttrs: {
8+
pname = "agru";
9+
version = "0.1.19";
10+
11+
src = fetchFromGitHub {
12+
owner = "etkecc";
13+
repo = "agru";
14+
rev = "v${finalAttrs.version}";
15+
hash = "sha256-K48f4wDGH7SYy69CYsTjM0WnwUxzWctV1NFR8IB/bYY=";
16+
};
17+
18+
vendorHash = null;
19+
20+
meta = {
21+
description = "Faster fully compatible ansible-galaxy substitute";
22+
homepage = "github.com/etkecc/";
23+
license = lib.licenses.agpl3Only;
24+
platforms = lib.platforms.linux ++ lib.platforms.darwin;
25+
maintainers = with lib.maintainers; [ jackoe ];
26+
mainProgram = "agru";
27+
};
28+
})

0 commit comments

Comments
 (0)