2017-06-28 22:09:01 +02:00
|
|
|
{ stdenv, substituteAll, fetchurl, fetchpatch
|
|
|
|
, pkgconfig, freetype, expat, libxslt, dejavu_fonts
|
|
|
|
, hostPlatform
|
|
|
|
}:
|
2014-11-04 13:49:22 +01:00
|
|
|
|
|
|
|
/** Font configuration scheme
|
|
|
|
- ./config-compat.patch makes fontconfig try the following root configs, in order:
|
|
|
|
$FONTCONFIG_FILE, /etc/fonts/${configVersion}/fonts.conf, /etc/fonts/fonts.conf
|
|
|
|
This is done not to override config of pre-2.11 versions (which just blow up)
|
|
|
|
and still use *global* font configuration at both NixOS or non-NixOS.
|
|
|
|
- NixOS creates /etc/fonts/${configVersion}/fonts.conf link to $out/etc/fonts/fonts.conf,
|
|
|
|
and other modifications should go to /etc/fonts/${configVersion}/conf.d
|
|
|
|
- See ./make-fonts-conf.xsl for config details.
|
|
|
|
|
|
|
|
*/
|
2004-03-30 19:28:41 +02:00
|
|
|
|
2014-09-27 20:08:45 +02:00
|
|
|
let
|
|
|
|
configVersion = "2.11"; # bump whenever fontconfig breaks compatibility with older configurations
|
|
|
|
in
|
2009-10-29 14:22:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-18 21:24:06 +02:00
|
|
|
name = "fontconfig-2.12.1";
|
2012-09-26 21:07:11 +02:00
|
|
|
|
2004-03-30 19:28:41 +02:00
|
|
|
src = fetchurl {
|
2013-01-29 13:47:14 +01:00
|
|
|
url = "http://fontconfig.org/release/${name}.tar.bz2";
|
2016-09-18 21:24:06 +02:00
|
|
|
sha256 = "1wy7svvp7df6bjpg1m5vizb3ngd7rhb20vpclv3x3qa71khs6jdl";
|
2004-03-30 19:28:41 +02:00
|
|
|
};
|
2012-09-26 21:07:11 +02:00
|
|
|
|
2014-11-04 13:49:22 +01:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./config-compat.patch;
|
|
|
|
inherit configVersion;
|
|
|
|
})
|
2017-02-20 21:16:41 +01:00
|
|
|
(fetchpatch {
|
|
|
|
name = "glibc-2.25.diff";
|
|
|
|
url = "https://cgit.freedesktop.org/fontconfig/patch/?id=1ab5258f7c";
|
|
|
|
sha256 = "0x2a4qx51j3gqcp1kp4lisdzmhrkw1zw0r851d82ksgjlc0vkbaz";
|
|
|
|
})
|
2014-11-04 13:49:22 +01:00
|
|
|
];
|
2017-02-20 21:16:41 +01:00
|
|
|
# additionally required for the glibc-2.25 patch; avoid requiring gperf
|
|
|
|
postPatch = ''
|
|
|
|
sed s/CHAR_WIDTH/CHARWIDTH/g -i src/fcobjshash.{h,gperf}
|
2018-02-12 09:10:20 +01:00
|
|
|
sleep 2
|
|
|
|
touch src/fcobjshash.h
|
2017-02-20 21:16:41 +01:00
|
|
|
'';
|
2014-10-19 09:54:07 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "bin" "dev" "lib" "out" ]; # $out contains all the config
|
2015-10-05 12:23:02 +02:00
|
|
|
|
2014-02-05 08:16:33 +01:00
|
|
|
propagatedBuildInputs = [ freetype ];
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ expat ];
|
2013-02-10 14:19:34 +01:00
|
|
|
|
2014-06-09 19:47:31 +02:00
|
|
|
configureFlags = [
|
2014-11-04 13:49:22 +01:00
|
|
|
"--with-cache-dir=/var/cache/fontconfig" # otherwise the fallback is in $out/
|
2014-06-09 19:47:31 +02:00
|
|
|
"--disable-docs"
|
2016-08-29 22:28:50 +02:00
|
|
|
# just <1MB; this is what you get when loading config fails for some reason
|
|
|
|
"--with-default-fonts=${dejavu_fonts.minimal}"
|
2014-06-09 19:47:31 +02:00
|
|
|
];
|
2009-10-29 14:22:43 +01:00
|
|
|
|
2009-11-26 22:26:42 +01:00
|
|
|
# We should find a better way to access the arch reliably.
|
2017-06-28 22:09:01 +02:00
|
|
|
crossArch = hostPlatform.arch or null;
|
2009-11-26 22:26:42 +01:00
|
|
|
|
2009-11-21 11:44:22 +01:00
|
|
|
preConfigure = ''
|
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
configureFlags="$configureFlags --with-arch=$crossArch";
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2012-05-16 00:04:47 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-17 22:07:36 +01:00
|
|
|
doCheck = true;
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2014-06-09 19:47:31 +02:00
|
|
|
# Don't try to write to /var/cache/fontconfig at install time.
|
2014-09-27 20:08:45 +02:00
|
|
|
installFlags = "fc_cachedir=$(TMPDIR)/dummy RUN_FC_CACHE_TEST=false";
|
2014-06-09 19:47:31 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
2014-11-26 22:03:45 +01:00
|
|
|
cd "$out/etc/fonts"
|
2016-08-29 22:28:50 +02:00
|
|
|
"${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${dejavu_fonts.minimal}" \
|
2014-09-27 20:08:45 +02:00
|
|
|
--stringparam fontconfigConfigVersion "${configVersion}" \
|
|
|
|
--path $out/share/xml/fontconfig \
|
|
|
|
${./make-fonts-conf.xsl} $out/etc/fonts/fonts.conf \
|
|
|
|
> fonts.conf.tmp
|
|
|
|
mv fonts.conf.tmp $out/etc/fonts/fonts.conf
|
2013-02-10 14:41:29 +01:00
|
|
|
'';
|
|
|
|
|
2014-09-27 20:08:45 +02:00
|
|
|
passthru = {
|
|
|
|
inherit configVersion;
|
|
|
|
};
|
2014-10-19 09:54:07 +02:00
|
|
|
|
2014-02-05 08:16:33 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-07 16:43:43 +01:00
|
|
|
description = "A library for font customization and configuration";
|
|
|
|
homepage = http://fontconfig.org/;
|
2014-02-05 08:16:33 +01:00
|
|
|
license = licenses.bsd2; # custom but very bsd-like
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2012-09-26 21:07:11 +02:00
|
|
|
};
|
2004-03-30 19:28:41 +02:00
|
|
|
}
|
2014-10-19 09:54:07 +02:00
|
|
|
|