Skip to content

Commit cc679fa

Browse files
authored
rcon-cli: init at 1.7.0 (#417108)
2 parents db03ff3 + 752d6a9 commit cc679fa

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14282,6 +14282,12 @@
1428214282
githubId = 75130626;
1428314283
keys = [ { fingerprint = "80EE AAD8 43F9 3097 24B5 3D7E 27E9 7B91 E63A 7FF8"; } ];
1428414284
};
14285+
link00000000 = {
14286+
email = "crandall.logan@gmail.com";
14287+
github = "link00000000";
14288+
githubId = 9771505;
14289+
name = "Logan Crandall";
14290+
};
1428514291
link2xt = {
1428614292
email = "link2xt@testrun.org";
1428714293
githubId = 18373967;
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
buildGoModule,
3+
fetchFromGitHub,
4+
lib,
5+
nix-update-script,
6+
}:
7+
buildGoModule (finalAttrs: {
8+
pname = "rcon-cli";
9+
version = "1.7.0";
10+
11+
src = fetchFromGitHub {
12+
owner = "itzg";
13+
repo = "rcon-cli";
14+
tag = finalAttrs.version;
15+
hash = "sha256-1dexjVfbqTzq9RLhVPn0gRcdJTa/AFj8BiQLoD0/L5c=";
16+
};
17+
18+
vendorHash = "sha256-xq1Z6cgUqXXVzc/j54Nul6xAXa5gKh3NeenQoMW+Xpg=";
19+
subPackages = [ "." ];
20+
21+
passthru.updateScript = nix-update-script { };
22+
23+
meta = {
24+
description = "Little RCON cli based on james4k's RCON library for golang";
25+
homepage = "https://github.com/itzg/rcon-cli";
26+
changelog = "https://github.com/itzg/rcon-cli/releases/tag/${finalAttrs.version}";
27+
license = lib.licenses.asl20;
28+
maintainers = with lib.maintainers; [
29+
link00000000
30+
];
31+
mainProgram = "rcon-cli";
32+
};
33+
})

0 commit comments

Comments
 (0)