Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 671 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "simple64-netplay-server"; 9 version = "2025.03.1"; 10 11 src = fetchFromGitHub { 12 owner = "simple64"; 13 repo = "simple64-netplay-server"; 14 tag = "v${version}"; 15 hash = "sha256-n+au4x6d50rZI5sH7B5jdlD6vXK65UM4TRAtzpPW6ws="; 16 }; 17 18 vendorHash = "sha256-E7vuGoCxCvJ/2bGDTz2NShlDjZbrPdTwLDydxop7Nio="; 19 20 meta = { 21 description = "Dedicated server for simple64 netplay"; 22 homepage = "https://github.com/simple64/simple64-netplay-server"; 23 license = lib.licenses.gpl3Only; 24 mainProgram = "simple64-netplay-server"; 25 maintainers = with lib.maintainers; [ tomasajt ]; 26 }; 27}