all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#27882] [PATCH] gnu: Add knights.
@ 2017-07-30 19:36 Ricardo Wurmus
  2017-07-31  9:43 ` Arun Isaac
  0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2017-07-30 19:36 UTC (permalink / raw)
  To: 27882; +Cc: Ricardo Wurmus

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

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index d8848f82f..844b93b5f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -350,6 +350,45 @@ played.  Freedoom complements the Doom engine with free levels, artwork, sound
 effects and music to make a completely free game.")
    (license license:bsd-3)))
 
+(define-public knights
+  (package
+    (name "knights")
+    (version "025")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.knightsgame.org.uk/files/knights_"
+                                  version "_src.tar.gz"))
+              (sha256
+               (base32
+                "18vp2ygvn0s0jz8rm585jqf6hjqkam1ximq81k0r9hpmfj7wb88f"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:make-flags
+       (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         ;; No configure script.
+         (delete 'configure))
+       #:tests? #f)) ;; No check target.
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("boost" ,boost)
+       ("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer)))
+       ("freetype" ,freetype)
+       ("fontconfig" ,fontconfig)
+       ("curl" ,curl)))
+    (home-page "http://www.knightsgame.org.uk/")
+    (synopsis "Multiplayer dungeon game involving knights and quests")
+    (description "Knights is a multiplayer game involving several knights who
+must run around a dungeon and complete various quests.  Each game revolves
+around a quest – for example, you might have to find some items and carry them
+back to your starting point.  This may sound easy, but as there are only
+enough items in the dungeon for one player to win, you may end up having to
+kill your opponents to get their stuff!  Other quests involve escaping from
+the dungeon, fighting a duel to the death against the enemy knights, or
+destroying an ancient book using a special wand.")
+    (license license:gpl3)))
+
 (define-public gnubg
   (package
     (name "gnubg")
-- 
2.13.3

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

* [bug#27882] [PATCH] gnu: Add knights.
  2017-07-30 19:36 [bug#27882] [PATCH] gnu: Add knights Ricardo Wurmus
@ 2017-07-31  9:43 ` Arun Isaac
  2017-12-16  9:25   ` bug#27882: " Ricardo Wurmus
  0 siblings, 1 reply; 3+ messages in thread
From: Arun Isaac @ 2017-07-31  9:43 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 27882


Thanks for the patch!

> +    (license license:gpl3)))

The license should be gpl3+. Also, there appear to be other bundled
dependencies in src/external and src/coercri under different licenses
(bsd, boost license, etc.). Could you check?

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

* bug#27882: [PATCH] gnu: Add knights.
  2017-07-31  9:43 ` Arun Isaac
@ 2017-12-16  9:25   ` Ricardo Wurmus
  0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2017-12-16  9:25 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 27882-done


Arun Isaac <arunisaac@systemreboot.net> writes:

> Thanks for the patch!
>
>> +    (license license:gpl3)))
>
> The license should be gpl3+.

You are right.

> Also, there appear to be other bundled
> dependencies in src/external and src/coercri under different licenses
> (bsd, boost license, etc.). Could you check?

I’ve added a list of these included sources and their licenses.  Pushed
to master with commit 02345c963.

Thanks for your review!

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

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

end of thread, other threads:[~2017-12-16  9:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-30 19:36 [bug#27882] [PATCH] gnu: Add knights Ricardo Wurmus
2017-07-31  9:43 ` Arun Isaac
2017-12-16  9:25   ` bug#27882: " Ricardo Wurmus

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.