diff options
author | Mark H Weaver <mhw@netris.org> | 2015-06-20 18:49:03 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-06-23 01:04:53 -0400 |
commit | bf7f17bad8118cd5485742b8295c504791fe0eb1 (patch) | |
tree | e1f49da933c12fbfa2659519f8f4ee8448719803 /gnu/packages/gnome.scm | |
parent | fb182b8a447a4a6078ff4e9aecae99b0f4c8e5cf (diff) | |
download | patches-bf7f17bad8118cd5485742b8295c504791fe0eb1.tar patches-bf7f17bad8118cd5485742b8295c504791fe0eb1.tar.gz |
gnu: Add clutter-gtk.
* gnu/packages/gnome.scm (clutter-gtk): New variable.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | 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 e5c920bfa7..c3bad46da6 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+))) |