From: Julian Graham <joolean@gmail.com>
To: guix-devel@gnu.org
Subject: [PATCH] Add gzochi game development framework
Date: Mon, 28 Sep 2015 23:47:06 -0400 [thread overview]
Message-ID: <CANdC_RB-M2ahJn3RkmCawRt7qBP+xCtTnHp2N6sk-=sNEZQLgA@mail.gmail.com> (raw)
[-- 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
next reply other threads:[~2015-09-29 3:47 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-29 3:47 Julian Graham [this message]
2015-09-29 22:01 ` [PATCH] Add gzochi game development framework Ludovic Courtès
2015-09-29 22:12 ` Julian Graham
2015-09-30 8:49 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CANdC_RB-M2ahJn3RkmCawRt7qBP+xCtTnHp2N6sk-=sNEZQLgA@mail.gmail.com' \
--to=joolean@gmail.com \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).