about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-08-23 11:46:43 +0200
committerDomen Kožar <domen@dev.si>2014-08-23 11:46:54 +0200
commite93eb3305822010062678c30dd7250c14874f87a (patch)
tree8963083101d0d2c944437fb53a21b241eac18c86 /pkgs
parenta3625b5b2bc3613eb3d665ddb797d56a8b3eaee3 (diff)
downloadnixlib-e93eb3305822010062678c30dd7250c14874f87a.tar
nixlib-e93eb3305822010062678c30dd7250c14874f87a.tar.gz
nixlib-e93eb3305822010062678c30dd7250c14874f87a.tar.bz2
nixlib-e93eb3305822010062678c30dd7250c14874f87a.tar.lz
nixlib-e93eb3305822010062678c30dd7250c14874f87a.tar.xz
nixlib-e93eb3305822010062678c30dd7250c14874f87a.tar.zst
nixlib-e93eb3305822010062678c30dd7250c14874f87a.zip
gtkglext: cleanup
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/gnome-2/platform/gtkglext/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/desktops/gnome-2/platform/gtkglext/default.nix b/pkgs/desktops/gnome-2/platform/gtkglext/default.nix
index ee08975b9daa..b278dadfe24c 100644
--- a/pkgs/desktops/gnome-2/platform/gtkglext/default.nix
+++ b/pkgs/desktops/gnome-2/platform/gtkglext/default.nix
@@ -15,11 +15,9 @@ stdenv.mkDerivation rec {
   # `GTK_WIDGET_NO_WINDOW', all of which appear to be deprecated nowadays.
   CPPFLAGS = "-UGTK_DISABLE_DEPRECATED";
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://projects.gnome.org/gtkglext/;
-
     description = "GtkGLExt, an OpenGL extension to GTK+";
-
     longDescription =
       '' GtkGLExt is an OpenGL extension to GTK+. It provides additional GDK
          objects which support OpenGL rendering in GTK+ and GtkWidget API
@@ -27,9 +25,7 @@ stdenv.mkDerivation rec {
          Löf's GtkGLArea, GtkGLExt provides a GtkWidget API that enables
          OpenGL drawing for standard and custom GTK+ widgets.
       '';
-
-    license = stdenv.lib.licenses.lgpl2Plus;
-
-    maintainers = [ ];
+    license = licenses.lgpl2Plus;
+    platforms = platforms.linux;
   };
 }