guix-commits
[Top][All Lists]
Advanced

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

04/06: gnu: Add clutter-gtk.


From: Mark H. Weaver
Subject: 04/06: gnu: Add clutter-gtk.
Date: Tue, 23 Jun 2015 05:05:13 +0000

mhw pushed a commit to branch master
in repository guix.

commit bf7f17bad8118cd5485742b8295c504791fe0eb1
Author: Mark H Weaver <address@hidden>
Date:   Sat Jun 20 18:49:03 2015 -0400

    gnu: Add clutter-gtk.
    
    * gnu/packages/gnome.scm (clutter-gtk): New variable.
---
 gnu/packages/gnome.scm |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index e5c920b..c3bad46 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2597,3 +2597,31 @@ without stepping on each others toes.")
 creating fast, mainly 2D single window applications such as media box UIs,
 presentations, kiosk style applications and so on.")
     (license license:lgpl2.0+)))
+
+(define-public clutter-gtk
+  (package
+    (name "clutter-gtk")
+    (version "1.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://gnome/sources/" name "/"
+                           (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "0k93hbf5d1970hs7vjddr3nnngygc7mxqbj474r3cdm0fjsm0dc8"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("gobject-introspection" ,gobject-introspection)))
+    (inputs
+     `(("clutter" ,clutter)
+       ("gtk+" ,gtk+)))
+    (home-page "http://www.clutter-project.org";)
+    (synopsis "Open GL based interactive canvas library GTK+ widget")
+    (description
+     "Clutter is an Open GL based interactive canvas library, designed for
+creating fast, mainly 2D single window applications such as media box UIs,
+presentations, kiosk style applications and so on.")
+    (license license:lgpl2.0+)))



reply via email to

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