2017-06-28 21:09:01 +01:00
|
|
|
{ stdenv, substituteAll, fetchurl, fetchpatch
|
|
|
|
, pkgconfig, freetype, expat, libxslt, dejavu_fonts
|
|
|
|
, hostPlatform
|
|
|
|
}:
|
2014-11-04 12:49:22 +00: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 18:28:41 +01:00
|
|
|
|
2014-09-27 19:08:45 +01:00
|
|
|
let
|
|
|
|
configVersion = "2.11"; # bump whenever fontconfig breaks compatibility with older configurations
|
|
|
|
in
|
2009-10-29 13:22:43 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-18 20:24:06 +01:00
|
|
|
name = "fontconfig-2.12.1";
|
2012-09-26 20:07:11 +01:00
|
|
|
|
2004-03-30 18:28:41 +01:00
|
|
|
src = fetchurl {
|
2013-01-29 12:47:14 +00:00
|
|
|
url = "http://fontconfig.org/release/${name}.tar.bz2";
|
2016-09-18 20:24:06 +01:00
|
|
|
sha256 = "1wy7svvp7df6bjpg1m5vizb3ngd7rhb20vpclv3x3qa71khs6jdl";
|
2004-03-30 18:28:41 +01:00
|
|
|
};
|
2012-09-26 20:07:11 +01:00
|
|
|
|
2014-11-04 12:49:22 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./config-compat.patch;
|
|
|
|
inherit configVersion;
|
|
|
|
})
|
2017-02-20 20:16:41 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "glibc-2.25.diff";
|
|
|
|
url = "https://cgit.freedesktop.org/fontconfig/patch/?id=1ab5258f7c";
|
|
|
|
sha256 = "0x2a4qx51j3gqcp1kp4lisdzmhrkw1zw0r851d82ksgjlc0vkbaz";
|
|
|
|
})
|
2014-11-04 12:49:22 +00:00
|
|
|
];
|
2017-02-20 20:16:41 +00: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 08:10:20 +00:00
|
|
|
sleep 2
|
|
|
|
touch src/fcobjshash.h
|
2017-02-20 20:16:41 +00:00
|
|
|
'';
|
2014-10-19 08:54:07 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "lib" "out" ]; # $out contains all the config
|
2015-10-05 11:23:02 +01:00
|
|
|
|
2014-02-05 07:16:33 +00:00
|
|
|
propagatedBuildInputs = [ freetype ];
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ expat ];
|
2013-02-10 13:19:34 +00:00
|
|
|
|
2014-06-09 18:47:31 +01:00
|
|
|
configureFlags = [
|
2014-11-04 12:49:22 +00:00
|
|
|
"--with-cache-dir=/var/cache/fontconfig" # otherwise the fallback is in $out/
|
2014-06-09 18:47:31 +01:00
|
|
|
"--disable-docs"
|
2016-08-29 21:28:50 +01:00
|
|
|
# just <1MB; this is what you get when loading config fails for some reason
|
|
|
|
"--with-default-fonts=${dejavu_fonts.minimal}"
|
2014-06-09 18:47:31 +01:00
|
|
|
];
|
2009-10-29 13:22:43 +00:00
|
|
|
|
2009-11-26 21:26:42 +00:00
|
|
|
# We should find a better way to access the arch reliably.
|
2017-06-28 21:09:01 +01:00
|
|
|
crossArch = hostPlatform.arch or null;
|
2009-11-26 21:26:42 +00:00
|
|
|
|
2009-11-21 10:44:22 +00:00
|
|
|
preConfigure = ''
|
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
configureFlags="$configureFlags --with-arch=$crossArch";
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2012-05-15 23:04:47 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-17 21:07:36 +00:00
|
|
|
doCheck = true;
|
2008-03-07 15:43:43 +00:00
|
|
|
|
2014-06-09 18:47:31 +01:00
|
|
|
# Don't try to write to /var/cache/fontconfig at install time.
|
2014-09-27 19:08:45 +01:00
|
|
|
installFlags = "fc_cachedir=$(TMPDIR)/dummy RUN_FC_CACHE_TEST=false";
|
2014-06-09 18:47:31 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2014-11-26 21:03:45 +00:00
|
|
|
cd "$out/etc/fonts"
|
2016-08-29 21:28:50 +01:00
|
|
|
"${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${dejavu_fonts.minimal}" \
|
2014-09-27 19:08:45 +01: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 13:41:29 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-27 19:08:45 +01:00
|
|
|
passthru = {
|
|
|
|
inherit configVersion;
|
|
|
|
};
|
2014-10-19 08:54:07 +01:00
|
|
|
|
2014-02-05 07:16:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-07 15:43:43 +00:00
|
|
|
description = "A library for font customization and configuration";
|
|
|
|
homepage = http://fontconfig.org/;
|
2014-02-05 07:16:33 +00:00
|
|
|
license = licenses.bsd2; # custom but very bsd-like
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2012-09-26 20:07:11 +01:00
|
|
|
};
|
2004-03-30 18:28:41 +01:00
|
|
|
}
|
2014-10-19 08:54:07 +01:00
|
|
|
|