File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 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;
Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments