diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4a0be01..ee10b5f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -784,34 +784,6 @@ demand (lazy) programming language support for C, Python and JS; simplicity of the API.") (license license:lgpl2.0+))) -(define-public gtkglext - (package - (name "gtkglext") - (version "1.2.0") - (source (origin - (method url-fetch) - (uri (string-append "mirror://sourceforge/gtkglext/gtkglext/" - version "/gtkglext-" version ".tar.gz")) - (sha256 - (base32 "1ya4d2j2aacr9ii5zj4ac95fjpdvlm2rg79mgnk7yvl1dcy3y1z5")) - (patches (search-patches - "gtkglext-disable-disable-deprecated.patch")))) - (build-system gnu-build-system) - (inputs `(("gtk+" ,gtk+-2) - ("mesa" ,mesa) - ("glu" ,glu) - ("libx11" ,libx11) - ("libxt" ,libxt))) - (native-inputs `(("pkg-config" ,pkg-config) - ("glib" ,glib "bin"))) - (propagated-inputs `(("pangox-compat" ,pangox-compat))) - (home-page "https://projects.gnome.org/gtkglext") - (synopsis "OpenGL extension to GTK+") - (description "GtkGLExt is an OpenGL extension to GTK+. It provides -additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget -API add-ons to make GTK+ widgets OpenGL-capable.") - (license license:lgpl2.1+))) - (define-public glade3 (package (name "glade") diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 8feac11..9b01f2e 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1331,3 +1331,31 @@ glass artworks done by Venicians glass blowers.") "GtkSpell provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget.") (license license:gpl2+))) + +(define-public gtkglext + (package + (name "gtkglext") + (version "1.2.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/gtkglext/gtkglext/" + version "/gtkglext-" version ".tar.gz")) + (sha256 + (base32 "1ya4d2j2aacr9ii5zj4ac95fjpdvlm2rg79mgnk7yvl1dcy3y1z5")) + (patches (search-patches + "gtkglext-disable-disable-deprecated.patch")))) + (build-system gnu-build-system) + (inputs `(("gtk+" ,gtk+-2) + ("mesa" ,mesa) + ("glu" ,glu) + ("libx11" ,libx11) + ("libxt" ,libxt))) + (native-inputs `(("pkg-config" ,pkg-config) + ("glib" ,glib "bin"))) + (propagated-inputs `(("pangox-compat" ,pangox-compat))) + (home-page "https://projects.gnome.org/gtkglext") + (synopsis "OpenGL extension to GTK+") + (description "GtkGLExt is an OpenGL extension to GTK+. It provides +additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget +API add-ons to make GTK+ widgets OpenGL-capable.") + (license license:lgpl2.1+)))