unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] Add gzochi game development framework
@ 2015-09-29  3:47 Julian Graham
  2015-09-29 22:01 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Julian Graham @ 2015-09-29  3:47 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 272 bytes --]

Hi Guix people!

This patch adds a package definition for the gzochi game development
framework (http://www.nongnu.org/gzochi/). Tested on x86_64, should also
work just fine on i686. (Not sure about MIPS and ARM.) Depends only on
existing Guix packages.


Regards,
Julian

[-- Attachment #1.2: Type: text/html, Size: 455 bytes --]

[-- Attachment #2: 0001-gnu-Add-gzochi-game-development-framework.patch --]
[-- Type: text/x-patch, Size: 2527 bytes --]

From 875c1207eb15dbebc0fbb0d86dc312771c0461d3 Mon Sep 17 00:00:00 2001
From: Julian Graham <julian@rake>
Date: Mon, 28 Sep 2015 23:08:30 -0400
Subject: [PATCH] gnu: Add gzochi game development framework.

* gnu/packages/game-development.scm (gzochi): New variable.
---
 gnu/packages/game-development.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index c1757ac..e18711e 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -24,6 +24,12 @@
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages)
+  #:use-module (gnu packages databases)
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnunet)
+  #:use-module (gnu packages guile)
+  #:use-module (gnu packages multiprecision)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages zip)
@@ -64,6 +70,39 @@
 is used in some video games and movies.")
     (license license:zlib)))
 
+(define-public gzochi
+  (package
+    (name "gzochi")
+    (version "0.9")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "http://savannah.nongnu.org/download/gzochi/gzochi-"
+                          version ".tar.gz"))
+      (sha256
+       (base32 "1nf8naqbc4hmhy99b8n70yswg9j71nh5mfpwwh6d8pdw5mp9b46a"))))
+    (build-system gnu-build-system)
+    (native-inputs `(("pkgconfig" ,pkg-config)))
+    (inputs `(("bdb" ,bdb)
+              ("glib" ,glib)
+              ("gmp" ,gmp)
+              ("guile" ,guile-2.0)
+              ("libmicrohttpd" ,libmicrohttpd)
+              ("ncurses" ,ncurses)
+              ("sdl" ,sdl)
+              ("zlib" ,zlib)))
+
+    (home-page "http://www.nongnu.org/gzochi/")
+    (synopsis "Scalable middleware for MMOs")
+    (description
+     "gzochi is a framework for developing massively multiplayer online games. A
+server container provides services to deployed games, which are written in
+Guile Scheme, that abstract and simplify some of the most challenging and
+error-prone aspects of online game development: Concurrency, data persistence,
+and network communications. A very thin client library can be embedded to
+provide connectivity for client applications written in any language.")
+    (license license:gpl3+)))
+
 (define-public tiled
   (package
     (name "tiled")
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-09-30  8:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-29  3:47 [PATCH] Add gzochi game development framework Julian Graham
2015-09-29 22:01 ` Ludovic Courtès
2015-09-29 22:12   ` Julian Graham
2015-09-30  8:49     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).