fontconfig: propagate freetype as *.pc requires; maintain

This commit is contained in:
Vladimír Čunát 2014-02-05 08:16:33 +01:00
parent be70104a3a
commit ab7b06d8c9
1 changed files with 6 additions and 4 deletions

View File

@ -16,7 +16,8 @@ stdenv.mkDerivation rec {
}
else null;
buildInputs = [ pkgconfig freetype expat ];
propagatedBuildInputs = [ freetype ];
buildInputs = [ pkgconfig expat ];
configureFlags = "--sysconfdir=/etc --with-cache-dir=/var/cache/fontconfig --disable-docs --with-default-fonts=";
@ -38,10 +39,11 @@ stdenv.mkDerivation rec {
cd "$out/etc/fonts" && tar xvf ${infinality_patch}
'';
meta = {
meta = with stdenv.lib; {
description = "A library for font customization and configuration";
homepage = http://fontconfig.org/;
license = "bsd";
platforms = stdenv.lib.platforms.all;
license = licenses.bsd2; # custom but very bsd-like
platforms = platforms.all;
maintainers = [ maintainers.vcunat ];
};
}