From e1f7e7128b12feafd517410206d0f71547ec1aa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 17 Aug 2015 19:18:39 +0200 Subject: [PATCH] freeglut: add meta attributes --- pkgs/development/libraries/freeglut/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 ]; + }; }