From 3c50f0892446f6d5c615e0c5915afb12705c6eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Ort=C3=ADn=20Fern=C3=A1ndez?= Date: Thu, 26 Nov 2020 08:56:20 +0000 Subject: [PATCH] gnu: Add cgoban. * gnu/packages/games.scm (cgoban): New variable. Signed-off-by: Efraim Flashner --- gnu/packages/games.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 1b7faa97c9..f17345e4e1 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -55,6 +55,7 @@ ;;; Copyright © 2020 Trevor Hass ;;; Copyright © 2020 Leo Prikler ;;; Copyright © 2020 Lu hux +;;; Copyright © 2020 Tomás Ortín Fernández ;;; ;;; This file is part of GNU Guix. ;;; @@ -11956,6 +11957,33 @@ (define-public azimuth inside the Zenith Colony.") (license license:gpl3+))) +(define-public cgoban + (package + (name "cgoban") + (version "1.9.14") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/cgoban1/cgoban1/" + version "/cgoban-" version ".tar.gz")) + (sha256 + (base32 "0qlvkiaglqq0izfph3l04mp4rqqqm9ks6rcsrmzrggw9x706z2iv")))) + (build-system gnu-build-system) + (inputs + `(("libx11" ,libx11) + ("libxt" ,libxt) + ("xorgproto" ,xorgproto))) + (home-page "http://cgoban1.sourceforge.net/") + (synopsis "Go client for X11") + (description "Provides a large set of Go-related services for X11: +@itemize +@item Local games with precise implementation of the Chinese and Japanese rulesets +@item Edition and visualization of SGF files-Connection to the NNGS or IGS Go servers +@item Bridge to Go modem protocol, allowing to play against Go modem-capable AIs +such as GnuGo. +@end itemize") + (license license:gpl2+))) + (define-public paperview (let ((commit "9f8538eb6734c76877b878b8f1e52587f2ae19e6") (revision "1"))