summary refs log tree commit diff
path: root/pkgs/development/libraries/freetype
diff options
context:
space:
mode:
authorcmfwyp <cmfwyp@riseup.net>2016-08-16 02:37:41 -0400
committerNikolay Amiantov <ab@fmap.me>2016-08-20 03:21:05 +0300
commit50c0011292fd44b5050c9829cb1860d0cd11cb89 (patch)
tree868b14a150e5e6b62877d2ca33d7ee06f76d9e95 /pkgs/development/libraries/freetype
parent574bba7f065f16a588e3ba21cb31df967e72a252 (diff)
downloadnixpkgs-50c0011292fd44b5050c9829cb1860d0cd11cb89.tar
nixpkgs-50c0011292fd44b5050c9829cb1860d0cd11cb89.tar.gz
nixpkgs-50c0011292fd44b5050c9829cb1860d0cd11cb89.tar.bz2
nixpkgs-50c0011292fd44b5050c9829cb1860d0cd11cb89.tar.lz
nixpkgs-50c0011292fd44b5050c9829cb1860d0cd11cb89.tar.xz
nixpkgs-50c0011292fd44b5050c9829cb1860d0cd11cb89.tar.zst
nixpkgs-50c0011292fd44b5050c9829cb1860d0cd11cb89.zip
freetype: add a long description
Diffstat (limited to 'pkgs/development/libraries/freetype')
-rw-r--r--pkgs/development/libraries/freetype/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix
index 39a71aea319..6c4586a2483 100644
--- a/pkgs/development/libraries/freetype/default.nix
+++ b/pkgs/development/libraries/freetype/default.nix
@@ -64,7 +64,14 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A font rendering engine";
-    homepage = http://www.freetype.org/;
+    longDescription = ''
+      FreeType is a portable and efficient library for rendering fonts. It
+      supports TrueType, Type 1, CFF fonts, and WOFF, PCF, FNT, BDF and PFR
+      fonts. It has a bytecode interpreter and has an automatic hinter called
+      autofit which can be used instead of hinting instructions included in
+      fonts.
+    '';
+    homepage = https://www.freetype.org/;
     license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
     #ToDo: encumbered = useEncumberedCode;
     platforms = platforms.all;