about summary refs log tree commit diff
path: root/pkgs/tools/networking/rconc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/rconc/default.nix')
-rw-r--r--pkgs/tools/networking/rconc/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/networking/rconc/default.nix b/pkgs/tools/networking/rconc/default.nix
new file mode 100644
index 0000000000000..53fc4d0b5aa05
--- /dev/null
+++ b/pkgs/tools/networking/rconc/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, lib, fetchFromGitHub, rustPlatform, pkgs }:
+
+rustPlatform.buildRustPackage rec {
+  version = "0.1.4";
+  pname = "rconc";
+
+  src = fetchFromGitHub {
+    owner = "klemens";
+    repo = pname;
+    rev = "11def656970b9ccf35c40429b5c599a4de7b28fc";
+    sha256 = "sha256-6Bff9NnG1ZEQhntzH5Iq0XEbJBKdwcb0BOn8nCkeWTY=";
+  };
+
+  cargoSha256 = "sha256-rSN/wm52ZhJ8JUEUC51Xv5eIpwvOR3LvTdFjGl64VVk=";
+
+  meta = with lib; {
+    description = "Simple cross-platform RCON client written in rust";
+    homepage = "https://github.com/klemens/rconc";
+    license = licenses.gpl3Only;
+  };
+}