7 stdenv.mkDerivation rec {
11 nativeBuildInputs = [ temurin-jre-bin-17 makeWrapper ];
14 url = "https://web.archive.org/web/20240314222506/https://files.gokgs.com/javaBin/cgoban.jar";
15 hash = "sha256-ehN/aQU23ZEtDh/+r3H2PDPBrWhgoMfgEfKq5q08kFY=";
25 install -D $src $out/lib/cgoban.jar
26 makeWrapper ${temurin-jre-bin-17}/bin/java $out/bin/cgoban --add-flags "-jar $out/lib/cgoban.jar"
31 description = "Client for the KGS Go Server";
32 mainProgram = "cgoban";
33 homepage = "https://www.gokgs.com/";
34 sourceProvenance = with sourceTypes; [ binaryBytecode ];
35 license = licenses.free;
36 maintainers = with maintainers; [ savannidgerinel ];
37 platforms = temurin-jre-bin-17.meta.platforms;