freetype: 2.10.0 -> 2.10.1
https://sourceforge.net/projects/freetype/files/freetype2/2.10.1/
This commit is contained in:
parent
46d91410af
commit
2a72715e09
@ -14,7 +14,7 @@ let
|
|||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "freetype";
|
pname = "freetype";
|
||||||
version = "2.10.0";
|
version = "2.10.1";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A font rendering engine";
|
description = "A font rendering engine";
|
||||||
@ -32,20 +32,20 @@ in stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://savannah/${pname}/${pname}-${version}.tar.bz2";
|
url = "mirror://savannah/${pname}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "01mybx78n3n9dhzylbrdy42wxdwfn8rp514qdkzjy6b5ij965k7w";
|
sha256 = "0vx2dg1jh5kq34dd6ifpjywkpapp8a7p1bvyq9yq5zi1i94gmnqn";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype
|
propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype
|
||||||
|
|
||||||
# dependence on harfbuzz is looser than the reverse dependence
|
# dependence on harfbuzz is looser than the reverse dependence
|
||||||
nativeBuildInputs = [ pkgconfig which makeWrapper ]
|
nativeBuildInputs = [ pkgconfig which makeWrapper ]
|
||||||
# FreeType requires GNU Make, which is not part of stdenv on FreeBSD.
|
# FreeType requires GNU Make, which is not part of stdenv on FreeBSD.
|
||||||
++ optional (!stdenv.isLinux) gnumake;
|
++ optional (!stdenv.isLinux) gnumake;
|
||||||
|
|
||||||
patches =
|
patches =
|
||||||
[ ./enable-table-validation.patch
|
[ ./enable-table-validation.patch ] ++
|
||||||
] ++
|
optional useEncumberedCode ./enable-subpixel-rendering.patch;
|
||||||
optional useEncumberedCode ./enable-subpixel-rendering.patch;
|
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user