mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 21:24:03 +00:00
simple64-netplay-server: init at 2024.06.1
This commit is contained in:
parent
ca5dd27a4d
commit
80aa9b2146
27
pkgs/by-name/si/simple64-netplay-server/package.nix
Normal file
27
pkgs/by-name/si/simple64-netplay-server/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -63,6 +63,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
hidapi
|
hidapi
|
||||||
qt6.qtbase
|
qt6.qtbase
|
||||||
qt6.qtwebsockets
|
qt6.qtwebsockets
|
||||||
|
qt6.qtwayland
|
||||||
];
|
];
|
||||||
|
|
||||||
dontUseCmakeConfigure = true;
|
dontUseCmakeConfigure = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user