t1lib: add meta data

This commit is contained in:
Markus Kowalewski 2018-10-27 15:33:08 +02:00
parent f32543dbbc
commit 6ab64b3db8
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -30,7 +30,10 @@ stdenv.mkDerivation {
postInstall = stdenv.lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ??
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
description = "A type 1 font rasterizer library for UNIX/X11";
homepage = http://www.t1lib.org/;
license = with licenses; [ gpl2 lgpl2 ];
platforms = platforms.unix;
};
}