simple64-netplay-server: init at 2024.06.1

This commit is contained in:
TomaSajt 2024-04-04 14:30:05 +02:00
parent ca5dd27a4d
commit 80aa9b2146
No known key found for this signature in database
GPG Key ID: F011163C050122A1
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "simple64-netplay-server";
version = "2024.06.1";
src = fetchFromGitHub {
owner = "simple64";
repo = "simple64-netplay-server";
rev = "refs/tags/v${version}";
hash = "sha256-WTEtTzRkXuIusfK6Nbj1aLwXcXyaXQi+j3SsDrvtLKo=";
};
vendorHash = "sha256-zfLSti368rBHj17HKDZKtOQQrhVGVa2CaieaDGHcZOk=";
meta = {
description = "Dedicated server for simple64 netplay";
homepage = "https://github.com/simple64/simple64-netplay-server";
license = lib.licenses.gpl3Only;
mainProgram = "simple64-netplay-server";
maintainers = with lib.maintainers; [ tomasajt ];
};
}

View File

@ -63,6 +63,7 @@ stdenv.mkDerivation (finalAttrs: {
hidapi
qt6.qtbase
qt6.qtwebsockets
qt6.qtwayland
];
dontUseCmakeConfigure = true;