diff options
author | Mark H Weaver <mhw@netris.org> | 2017-01-11 08:56:58 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2017-01-11 11:34:39 -0500 |
commit | 43ec26046c22a2ce24d5617f6726e138efef0f6c (patch) | |
tree | a3e8c09de697be5c02d8ebd4dfa9cdfba55c08e6 | |
parent | ac20cd7bbd5601bfb91b8f725ff156743fed8c86 (diff) | |
download | patches-43ec26046c22a2ce24d5617f6726e138efef0f6c.tar patches-43ec26046c22a2ce24d5617f6726e138efef0f6c.tar.gz |
gnu: Add libgnome-games-support.
* gnu/packages/gnome.scm (libgnome-games-support): New variable.
-rw-r--r-- | gnu/packages/gnome.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index c348b30418..bc3c9668fd 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3073,6 +3073,20 @@ queries upon that data.") GNOME Games, but it may be used by others.") (license license:lgpl3+))) +(define-public libgnome-games-support + (package + (inherit libgames-support) + (name "libgnome-games-support") + (version "1.2.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1rsyf5hbjim7zpk1yar3gv65g1nmw6zbbc0smrmxsfk0f9n3j9m6")))))) + (define-public gnome-klotski (package (name "gnome-klotski") |