guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add julius.


From: guix-commits
Subject: branch master updated: gnu: Add julius.
Date: Sun, 12 Jan 2020 17:40:44 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 299e15c  gnu: Add julius.
299e15c is described below

commit 299e15c16e4a50ebd8fa3be9962d655895dca4ce
Author: Timotej Lazar <address@hidden>
AuthorDate: Sun Jan 12 22:23:49 2020 +0100

    gnu: Add julius.
    
    * gnu/packages/games.scm (julius): New variable.
---
 gnu/packages/games.scm | 30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 1f6064d..6d5d8e7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -43,7 +43,7 @@
 ;;; Copyright © 2019 Jesse Gibbons <address@hidden>
 ;;; Copyright © 2019 Dan Frumin <address@hidden>
 ;;; Copyright © 2019 Guillaume Le Vaillant <address@hidden>
-;;; Copyright © 2019 Timotej Lazar <address@hidden>
+;;; Copyright © 2019, 2020 Timotej Lazar <address@hidden>
 ;;; Copyright © 2019 Josh Holland <address@hidden>
 ;;; Copyright © 2017, 2019 Hartmut Goebel <address@hidden>
 ;;;
@@ -739,6 +739,34 @@ automata.  The following features are available:
 @end enumerate")
     (license license:gpl2+)))
 
+(define-public julius
+  (package
+    (name "julius")
+    (version "1.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/bvschaik/julius.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0kgyzfjii4dhpy2h05977alwdmxyxb4jxznnrhlgb21m0ybncmvp"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("sdl2" ,sdl2)
+       ("sdl2-mixer" ,sdl2-mixer)))
+    (home-page "https://github.com/bvschaik/julius";)
+    (synopsis "Re-implementation of Caesar III game engine")
+    (description
+     "Engine for Caesar III, a city-building real-time strategy game.
+Julius includes some UI enhancements while preserving the logic (including
+bugs) of the original game, so that saved games are compatible.  This package
+does not include game data.")
+    (license (list license:agpl3
+                   license:expat        ; ext/dirent
+                   license:zlib))))     ; ext/tinyfiledialogs
+
 (define-public meandmyshadow
   (package
     (name "meandmyshadow")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]