fontconfig: 2.13.93 -> 2.13.94

+3 -12
+3 -12
pkgs/development/libraries/fontconfig/default.nix
··· 1 1 { lib, stdenv 2 - , fetchpatch 3 2 , substituteAll 4 3 , fetchurl 5 4 , pkg-config ··· 15 14 16 15 stdenv.mkDerivation rec { 17 16 pname = "fontconfig"; 18 - version = "2.13.93"; 17 + version = "2.13.94"; 19 18 20 19 src = fetchurl { 21 - url = "http://fontconfig.org/release/${pname}-${version}.tar.xz"; 22 - sha256 = "1850q4k80yxma5g3yxkvyv8i5a3xqzswwml8gjy3jmywx8qqd5pa"; 20 + url = "https://www.freedesktop.org/software/fontconfig/release/${pname}-${version}.tar.xz"; 21 + sha256 = "0g004r0bkkqz00mpm3svnnxn7d83158q0yb9ggxryizxfg5m5w55"; 23 22 }; 24 - 25 - patches = [ 26 - # Fix build with no docbook2html. 27 - (fetchpatch { 28 - url = "https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/60ce9b695ee9d1ac514a61f562e210d3278ba605.patch"; 29 - sha256 = "0hfd2jdvsgackdp29dyzf5b1277pnbacihxqh9vdn63rr932ipra"; 30 - }) 31 - ]; 32 23 33 24 outputs = [ "bin" "dev" "lib" "out" ]; # $out contains all the config 34 25