Merge pull request #197113 from icewind1991/init-rconc

rconc: init at 0.1.4

authored by Anderson Torres and committed by GitHub 97a32193 5fa28751

+29
+6
maintainers/maintainer-list.nix
··· 5698 githubId = 3661115; 5699 name = "Ingo Blechschmidt"; 5700 }; 5701 icy-thought = { 5702 name = "Icy-Thought"; 5703 email = "gilganyx@pm.me";
··· 5698 githubId = 3661115; 5699 name = "Ingo Blechschmidt"; 5700 }; 5701 + icewind1991 = { 5702 + name = "Robin Appelman"; 5703 + email = "robin@icewind.nl"; 5704 + github = "icewind1991"; 5705 + githubId = 1283854; 5706 + }; 5707 icy-thought = { 5708 name = "Icy-Thought"; 5709 email = "gilganyx@pm.me";
+21
pkgs/tools/networking/rconc/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, pkgs }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + version = "0.1.4"; 5 + pname = "rconc"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "klemens"; 9 + repo = pname; 10 + rev = "11def656970b9ccf35c40429b5c599a4de7b28fc"; 11 + sha256 = "sha256-6Bff9NnG1ZEQhntzH5Iq0XEbJBKdwcb0BOn8nCkeWTY="; 12 + }; 13 + 14 + cargoSha256 = "sha256-rSN/wm52ZhJ8JUEUC51Xv5eIpwvOR3LvTdFjGl64VVk="; 15 + 16 + meta = with lib; { 17 + description = "Simple cross-platform RCON client written in rust"; 18 + homepage = "https://github.com/klemens/rconc"; 19 + license = licenses.gpl3Only; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 10754 10755 rcon = callPackage ../tools/networking/rcon { }; 10756 10757 rdap = callPackage ../tools/networking/rdap { }; 10758 10759 rdbtools = callPackage ../development/tools/rdbtools { python = python3; };
··· 10754 10755 rcon = callPackage ../tools/networking/rcon { }; 10756 10757 + rconc = callPackage ../tools/networking/rconc { }; 10758 + 10759 rdap = callPackage ../tools/networking/rdap { }; 10760 10761 rdbtools = callPackage ../development/tools/rdbtools { python = python3; };