python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / rconc / default.nix
blob53fc4d0b5aa052076c8c60411162ee1163ebdc40
1 { stdenv, lib, fetchFromGitHub, rustPlatform, pkgs }:
3 rustPlatform.buildRustPackage rec {
4   version = "0.1.4";
5   pname = "rconc";
7   src = fetchFromGitHub {
8     owner = "klemens";
9     repo = pname;
10     rev = "11def656970b9ccf35c40429b5c599a4de7b28fc";
11     sha256 = "sha256-6Bff9NnG1ZEQhntzH5Iq0XEbJBKdwcb0BOn8nCkeWTY=";
12   };
14   cargoSha256 = "sha256-rSN/wm52ZhJ8JUEUC51Xv5eIpwvOR3LvTdFjGl64VVk=";
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   };