freeglut: add meta attributes

This commit is contained in:
Bjørn Forsman 2015-08-17 19:18:39 +02:00
parent 4a75883932
commit e1f7e7128b
1 changed files with 16 additions and 0 deletions

View File

@ -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 ];
};
}