>From 9d52bab40f1e8c5ee3426608910136495493753b Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Tue, 20 Jun 2017 21:50:02 +0200 Subject: [PATCH] gnu: Add armagetronad. * gnu/packages/games.scm (armagetronad): New variable. --- gnu/packages/games.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index b706b5793..608b6dd28 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -135,6 +135,35 @@ #:use-module (guix build-system cmake) #:use-module (guix build-system trivial)) +(define-public armagetronad + (package + (name "armagetronad") + (version "0.2.8.3.4") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/" name "/stable/" + version "/" name "-" version ".src.tar.gz")) + (sha256 + (base32 + "1pgy0r80z702qdv94aw3ywdn4ynnr4cdi86ml558pljfc5ygasj4")))) + (build-system gnu-build-system) + (inputs + `(("libxml2" ,libxml2) + ("sdl" ,sdl) + ("sdl-image" ,sdl-image) + ("freeglut" ,freeglut) + ("libpng" ,libpng) + ("libjpeg-turbo" ,libjpeg-turbo))) + (home-page "http://www.armagetronad.org") + (synopsis "Tron clone in 3D") + (description "Armagetron is a multiplayer game in 3d that attempts to +emulate and expand on the lightcycle sequence from the movie Tron. It's +an old school arcade game slung into the 21st century. Highlights include +a customizable playing arena, HUD, unique graphics, and AI bots. For the +more advanced player there are new game modes and a wide variety of physics +settings to tweak as well.") + (license license:gpl2+))) + (define-public cataclysm-dda (package (name "cataclysm-dda") -- 2.13.1