We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2201aaa commit 6aaa5cdCopy full SHA for 6aaa5cd
pkgs/by-name/ag/agru/package.nix
@@ -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