Merge pull request #89227 from f4814/rcon-init

rcon: init at 0.5
This commit is contained in:
Ryan Mulligan 2020-10-26 06:56:21 -07:00 committed by GitHub
commit 99725609cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, cmake, pkg-config, glib, libbsd, check, pcre }:
stdenv.mkDerivation rec {
pname = "rcon";
version = "0.5";
src = fetchFromGitHub {
owner = "n0la";
repo = "rcon";
rev = version;
sha256 = "1jsnmsm2qkiv8dan1yncx0qp6zfkcbyvf81c7xwpv6r499ijw1nb";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
glib
libbsd
check
pcre
];
meta = with stdenv.lib; {
homepage = "https://github.com/n0la/rcon";
description = "Source RCON client for command line";
maintainers = with maintainers; [ f4814n ];
platforms = with platforms; linux ++ darwin;
license = licenses.bsd2;
};
}

View file

@ -6617,6 +6617,8 @@ in
rc = callPackage ../shells/rc { };
rcon = callPackage ../tools/networking/rcon { };
rdbtools = callPackage ../development/tools/rdbtools { python = python3; };
rdma-core = callPackage ../os-specific/linux/rdma-core { };