depot/third_party/nixpkgs/pkgs/tools/networking/rcon/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

30 lines
669 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, glib, libbsd, check, pcre }:
stdenv.mkDerivation rec {
pname = "rcon";
version = "0.6";
src = fetchFromGitHub {
owner = "n0la";
repo = "rcon";
rev = version;
sha256 = "sha256-bHm6JeWmpg42VZQXikHl+BMx9zimRLBQWemTqOxyLhw=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
glib
libbsd
check
pcre
];
meta = with 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;
};
}