fontconfig: 2.14.0 → 2.14.2

https://gitlab.freedesktop.org/fontconfig/fontconfig/-/compare/2.14.0...2.14.2

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
R. Ryantm 2023-02-03 08:55:28 +00:00 committed by Jan Tojnar
parent 04c03e3c27
commit 0d6a6827ea

View file

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchurl
, fetchpatch2
, pkg-config
, python3
, freetype
@ -14,15 +15,25 @@
stdenv.mkDerivation rec {
pname = "fontconfig";
version = "2.14.0";
version = "2.14.2";
outputs = [ "bin" "dev" "lib" "out" ]; # $out contains all the config
src = fetchurl {
url = "https://www.freedesktop.org/software/fontconfig/release/${pname}-${version}.tar.xz";
sha256 = "3L64TJx0u/2xM9U1/hx77cnyIhqNrzkUuYTETFIOm6w=";
hash = "sha256-26aVtXvOFQI9LO7e+CBiwrkl5R9dTMSu9zbPE/YKRos=";
};
patches = [
# Provide 11-lcdfilter-none.conf for NixOS module
# https://gitlab.freedesktop.org/fontconfig/fontconfig/-/merge_requests/268
(fetchpatch2 {
name = "add-optional-11-lcdfilter-none-configuration.patch";
url = "https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/c2666a6d9a6ed18b1bfcef8176e25f62993e24db.patch";
hash = "sha256-UBzkxy3uxFO+g0aQtPnBZv7OncgQdinwzNwWS8ngjcE=";
})
];
nativeBuildInputs = [
autoreconfHook
gperf