nakama: init at 3.26.0 (#378552)

This commit is contained in:
rein
2025-02-09 16:59:05 +05:30
committed by GitHub
parent d73bb6e604
commit faf4d8919c

View File

@@ -0,0 +1,39 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "nakama";
version = "3.26.0";
src = fetchFromGitHub {
owner = "heroiclabs";
repo = "nakama";
tag = "v${version}";
hash = "sha256-so8N2gk4TfeJy30XxiXH7utXs8InvnXm68ZoSvFykQk=";
};
vendorHash = null;
subPackages = [ "." ];
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
doCheck = false;
meta = {
description = "Distributed server for social and realtime games and apps";
homepage = "https://heroiclabs.com/nakama/";
changelog = "https://github.com/heroiclabs/nakama/releases/tag/v${version}";
license = lib.licenses.asl20;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.qxrein ];
mainProgram = "nakama";
};
}