mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
38 lines
921 B
Nix
38 lines
921 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
let
|
|
pname = "gate";
|
|
version = "0.37.1";
|
|
in
|
|
buildGoModule {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "minekube";
|
|
repo = "gate";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-2oWC6l6SFrulk0EPLVtFfMKfVPHZFOngKjvOLprg/Yk=";
|
|
};
|
|
|
|
vendorHash = "sha256-JaBcGcqFqp9Il3FyU/QwThuggzPg8HWScvFHEAgtgBU=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = {
|
|
description = "High-Performance, Low-Memory, Lightweight, Extensible Minecraft Reverse Proxy";
|
|
longDescription = ''
|
|
Gate is an extensible, high performant & paralleled Minecraft proxy server
|
|
with scalability, flexibility & excellent server version support - written in Go
|
|
and ready for the cloud!
|
|
'';
|
|
homepage = "https://github.com/minekube/gate";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ XBagon ];
|
|
mainProgram = "gate";
|
|
};
|
|
}
|
|
|