freetype: 2.10.0 -> 2.10.1

https://sourceforge.net/projects/freetype/files/freetype2/2.10.1/
This commit is contained in:
Will Dietz 2019-07-01 18:01:27 -05:00
parent 46d91410af
commit 2a72715e09
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02
1 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ let
in stdenv.mkDerivation rec {
pname = "freetype";
version = "2.10.0";
version = "2.10.1";
meta = with stdenv.lib; {
description = "A font rendering engine";
@ -32,19 +32,19 @@ in stdenv.mkDerivation rec {
};
src = fetchurl {
url = "mirror://savannah/${pname}/${pname}-${version}.tar.bz2";
sha256 = "01mybx78n3n9dhzylbrdy42wxdwfn8rp514qdkzjy6b5ij965k7w";
url = "mirror://savannah/${pname}/${pname}-${version}.tar.xz";
sha256 = "0vx2dg1jh5kq34dd6ifpjywkpapp8a7p1bvyq9yq5zi1i94gmnqn";
};
propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype
# dependence on harfbuzz is looser than the reverse dependence
nativeBuildInputs = [ pkgconfig which makeWrapper ]
# FreeType requires GNU Make, which is not part of stdenv on FreeBSD.
++ optional (!stdenv.isLinux) gnumake;
patches =
[ ./enable-table-validation.patch
] ++
[ ./enable-table-validation.patch ] ++
optional useEncumberedCode ./enable-subpixel-rendering.patch;
outputs = [ "out" "dev" ];