From b7c53fcc4cb4210a6e718e2a5a0c7edc3a0e952b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 15 Jan 2012 11:44:11 +0000 Subject: [PATCH] ftgl: added meta information svn path=/nixpkgs/trunk/; revision=31573 --- pkgs/development/libraries/ftgl/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/development/libraries/ftgl/default.nix b/pkgs/development/libraries/ftgl/default.nix index e9b6ba61ffdb..ce750fc1696f 100644 --- a/pkgs/development/libraries/ftgl/default.nix +++ b/pkgs/development/libraries/ftgl/default.nix @@ -13,4 +13,19 @@ stdenv.mkDerivation { buildInputs = [freetype mesa]; + meta = { + homepage = "http://sourceforge.net/apps/mediawiki/ftgl/"; + description = "font rendering library for OpenGL applications"; + license = stdenv.lib.licenses.gpl3Plus; + + longDescription = '' + FTGL is a free cross-platform Open Source C++ library that uses + Freetype2 to simplify rendering fonts in OpenGL applications. FTGL + supports bitmaps, pixmaps, texture maps, outlines, polygon mesh, + and extruded polygon rendering modes. + ''; + + platforms = stdenv.lib.platforms.gnu; + maintainers = []; + }; }