[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
151/151: gnu: Add raincat platform game.
From: |
Paul |
Subject: |
151/151: gnu: Add raincat platform game. |
Date: |
Mon, 19 Oct 2015 08:59:14 +0000 |
toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.
commit bfa5e9f150777d0420e311cbd818d885a5897a49
Author: Paul van der Walt <address@hidden>
Date: Fri Oct 16 15:00:06 2015 +0200
gnu: Add raincat platform game.
* gnu/packages/games.scm (raincat): New variable.
---
gnu/packages/games.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 3023794..f2f2bee 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -12,6 +12,7 @@
;;; Copyright © 2015 Christopher Allan Webber <address@hidden>
;;; Copyright © 2015 Ricardo Wurmus <address@hidden>
;;; Copyright © 2015 Alex Kost <address@hidden>
+;;; Copyright © 2015 Paul van der Walt <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -49,6 +50,7 @@
#:use-module (gnu packages guile)
#:use-module (gnu packages libcanberra)
#:use-module (gnu packages libunwind)
+ #:use-module (gnu packages haskell)
#:use-module (gnu packages mp3)
#:use-module (gnu packages image)
#:use-module (gnu packages ncurses)
@@ -78,6 +80,7 @@
#:use-module (gnu packages fribidi)
#:use-module (guix build-system trivial)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system haskell)
#:use-module (guix build-system cmake)
#:use-module (guix build-system trivial))
@@ -1094,6 +1097,41 @@ on the screen and keyboard to display letters.")
;; Most files under gpl2+ or gpl3+, but eat.wav under gpl3
(license license:gpl3)))
+(define-public raincat
+ (package
+ (name "raincat")
+ (version "1.1.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/Raincat/Raincat-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1aalh68h6799mv4vyg30zpskl5jkn6x2j1jza7p4lrflyifxzar8"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-extensible-exceptions" ,ghc-extensible-exceptions)
+ ("ghc-mtl" ,ghc-mtl)
+ ("ghc-random" ,ghc-random)
+ ("ghc-glut" ,ghc-glut)
+ ("ghc-opengl" ,ghc-opengl)
+ ("ghc-sdl" ,ghc-sdl)
+ ("ghc-sdl-image" ,ghc-sdl-image)
+ ("ghc-sdl-mixer" ,ghc-sdl-mixer)))
+ (home-page "http://raincat.bysusanlin.com/")
+ (synopsis
+ "Puzzle game written in Haskell with a cat in lead role")
+ (description
+ "Project Raincat is a game developed by Carnegie Mellon students through
+GCS during the Fall 2008 semester. Raincat features game play inspired from
+classics Lemmings and The Incredible Machine. The project proved to be an
+excellent learning experience for the programmers. Everything is programmed
+in Haskell.")
+ (license license:bsd-3)))
+
(define-public manaplus
(package
(name "manaplus")
- 139/151: gnu: Add ghc-xhtml., (continued)
- 139/151: gnu: Add ghc-xhtml., Paul, 2015/10/19
- 142/151: gnu: Add ghc-half., Paul, 2015/10/19
- 140/151: gnu: Add ghc-regex-posix., Paul, 2015/10/19
- 138/151: gnu: Add ghc-haskell-src., Paul, 2015/10/19
- 144/151: gnu: Add ghc-gluraw., Paul, 2015/10/19
- 143/151: gnu: Add ghc-openglraw., Paul, 2015/10/19
- 146/151: gnu: Add ghc-opengl., Paul, 2015/10/19
- 145/151: gnu: Add ghc-objectname., Paul, 2015/10/19
- 148/151: gnu: Add ghc-sdl., Paul, 2015/10/19
- 141/151: gnu: Add ghc-regex-compat., Paul, 2015/10/19
- 151/151: gnu: Add raincat platform game.,
Paul <=
- 150/151: gnu: Add ghc-sdl-image., Paul, 2015/10/19
- 147/151: gnu: Add ghc-glut., Paul, 2015/10/19
- 149/151: gnu: Add ghc-sdl-mixer., Paul, 2015/10/19