[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48729] [PATCH v2 37/47] gnu: Add gtkglarea.
From: |
Raghav Gururajan |
Subject: |
[bug#48729] [PATCH v2 37/47] gnu: Add gtkglarea. |
Date: |
Thu, 3 Jun 2021 07:11:08 -0400 |
* gnu/packages/gnome.scm (gtkglarea): New variable.
---
gnu/packages/gnome.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index be458c07bb..6cbe219102 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -218,6 +218,37 @@
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
+(define-public gtkglarea
+ (package
+ (name "gtkglarea")
+ (version "2.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "1pl2vdj6l64j864ilhkq1bcggb3hrlxjwk5m029i7xfjfxc587lf"))))
+ (build-system glib-or-gtk-build-system)
+ (arguments
+ `(#:configure-flags
+ (list
+ "--disable-static")))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
+ `(("mesa" ,mesa)))
+ (propagated-inputs
+ `(("gtk+" ,gtk+-2)))
+ (synopsis "OpenGL widget for GTK+")
+ (description "GtkGLArea is an OpenGL widget for GTK+ GUI toolkit.
+ Just as GTK+ is build on top of GDK, GtkGLArea is built on top of gdkgl which
+ is basically wrapper around GLX functions.")
+ (home-page "https://developer.gnome.org/gtk3/stable/GtkGLArea.html")
+ (license license:lgpl2.0+)))
+
(define-public gupnp-igd
(package
(name "gupnp-igd")
--
2.31.1
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#48729] [PATCH v2 37/47] gnu: Add gtkglarea.,
Raghav Gururajan <=