summary refs log tree commit diff
path: root/pkgs/development/libraries/freeglut
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2015-08-17 19:18:39 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-08-18 18:45:14 +0200
commite1f7e7128b12feafd517410206d0f71547ec1aa4 (patch)
treece3c9c22fdc695c459ebc75121ab05715e5c9f08 /pkgs/development/libraries/freeglut
parent4a75883932298b2c54888ec830bf76ab46a83f5a (diff)
downloadnixpkgs-e1f7e7128b12feafd517410206d0f71547ec1aa4.tar
nixpkgs-e1f7e7128b12feafd517410206d0f71547ec1aa4.tar.gz
nixpkgs-e1f7e7128b12feafd517410206d0f71547ec1aa4.tar.bz2
nixpkgs-e1f7e7128b12feafd517410206d0f71547ec1aa4.tar.lz
nixpkgs-e1f7e7128b12feafd517410206d0f71547ec1aa4.tar.xz
nixpkgs-e1f7e7128b12feafd517410206d0f71547ec1aa4.tar.zst
nixpkgs-e1f7e7128b12feafd517410206d0f71547ec1aa4.zip
freeglut: add meta attributes
Diffstat (limited to 'pkgs/development/libraries/freeglut')
-rw-r--r--pkgs/development/libraries/freeglut/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/freeglut/default.nix b/pkgs/development/libraries/freeglut/default.nix
index 20bd2b6da4d..74cc5c6796e 100644
--- a/pkgs/development/libraries/freeglut/default.nix
+++ b/pkgs/development/libraries/freeglut/default.nix
@@ -22,4 +22,20 @@ in stdenv.mkDerivation {
   '';
 
   configureFlags = [ "--enable-warnings" ];
+
+  meta = with stdenv.lib; {
+    description = "Create and manage windows containing OpenGL contexts";
+    longDescription = ''
+      FreeGLUT is an open source alternative to the OpenGL Utility Toolkit
+      (GLUT) library. GLUT (and hence FreeGLUT) allows the user to create and
+      manage windows containing OpenGL contexts on a wide range of platforms
+      and also read the mouse, keyboard and joystick functions. FreeGLUT is
+      intended to be a full replacement for GLUT, and has only a few
+      differences.
+    '';
+    homepage = http://freeglut.sourceforge.net/;
+    license = licenses.mit;
+    platforms = platforms.all;
+    maintainers = [ maintainers.bjornfor ];
+  };
 }