Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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>

authored by R. Ryantm and committed by Jan Tojnar 0d6a6827 04c03e3c

+13 -2
+13 -2
pkgs/development/libraries/fontconfig/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchurl 4 + , fetchpatch2 4 5 , pkg-config 5 6 , python3 6 7 , freetype ··· 14 15 15 16 stdenv.mkDerivation rec { 16 17 pname = "fontconfig"; 17 - version = "2.14.0"; 18 + version = "2.14.2"; 18 19 19 20 outputs = [ "bin" "dev" "lib" "out" ]; # $out contains all the config 20 21 21 22 src = fetchurl { 22 23 url = "https://www.freedesktop.org/software/fontconfig/release/${pname}-${version}.tar.xz"; 23 - sha256 = "3L64TJx0u/2xM9U1/hx77cnyIhqNrzkUuYTETFIOm6w="; 24 + hash = "sha256-26aVtXvOFQI9LO7e+CBiwrkl5R9dTMSu9zbPE/YKRos="; 24 25 }; 26 + 27 + patches = [ 28 + # Provide 11-lcdfilter-none.conf for NixOS module 29 + # https://gitlab.freedesktop.org/fontconfig/fontconfig/-/merge_requests/268 30 + (fetchpatch2 { 31 + name = "add-optional-11-lcdfilter-none-configuration.patch"; 32 + url = "https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/c2666a6d9a6ed18b1bfcef8176e25f62993e24db.patch"; 33 + hash = "sha256-UBzkxy3uxFO+g0aQtPnBZv7OncgQdinwzNwWS8ngjcE="; 34 + }) 35 + ]; 25 36 26 37 nativeBuildInputs = [ 27 38 autoreconfHook