2fcb411819
With these fontconfig files it becomes possible for other packages to configure font aliases for the Microsoft fonts. If both, for example, vista-fonts and some package providing an alias for Cambria are installed then the user may control whether or not the alias is active by manipulating the package priorities.
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{stdenv, fetchurl, cabextract}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "vista-fonts-1";
|
|
|
|
src = fetchurl {
|
|
url = http://download.microsoft.com/download/f/5/a/f5a3df76-d856-4a61-a6bd-722f52a5be26/PowerPointViewer.exe;
|
|
sha256 = "07vhjdw8iip7gxk6wvp4myhvbn9619g10j9qvpbzz4ihima57ry4";
|
|
};
|
|
|
|
buildInputs = [cabextract];
|
|
|
|
unpackPhase = "
|
|
cabextract --lowercase --filter ppviewer.cab $src
|
|
cabextract --lowercase --filter '*.TTF' ppviewer.cab
|
|
sourceRoot=.
|
|
";
|
|
|
|
buildPhase = "true";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/fonts/truetype
|
|
cp *.ttf $out/share/fonts/truetype
|
|
|
|
# Set up no-op font configs to override any aliases set up by
|
|
# other packages.
|
|
mkdir -p $out/etc/fonts/conf.d
|
|
for name in Calibri Cambria Candara Consolas Constantia Corbel ; do
|
|
substitute ${./no-op.conf} $out/etc/fonts/conf.d/30-''${name,,}.conf \
|
|
--subst-var-by fontname $name
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Some TrueType fonts from Microsoft Windows Vista (Calibri, Cambria, Candara, Consolas, Constantia, Corbel)";
|
|
homepage = http://www.microsoft.com/typography/ClearTypeFonts.mspx;
|
|
binaryDistribution = false; # haven't read the EULA, but we probably can't redistribute these files, so...
|
|
|
|
# Set a non-zero priority to allow easy overriding of the
|
|
# fontconfig configuration files.
|
|
priority = 5;
|
|
};
|
|
}
|