rcon: init at 0.5
This commit is contained in:
parent
c12cfa428c
commit
5d0fc4a5a5
2 changed files with 32 additions and 0 deletions
30
pkgs/tools/networking/rcon/default.nix
Normal file
30
pkgs/tools/networking/rcon/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -6571,6 +6571,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 { };
|
||||
|
|
Loading…
Reference in a new issue