nixpkgs/pkgs/data/fonts/xits-math/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2016-11-23 14:56:15 +00:00
{ stdenv, fetchFromGitHub, python2Packages, fontforge }:
2016-05-11 03:26:05 +00:00
stdenv.mkDerivation rec {
name = "xits-math-${version}";
version = "1.108";
src = fetchFromGitHub {
owner = "khaledhosny";
repo = "xits-math";
rev = "v${version}";
sha256 = "08nn676c41a7gmmhrzi8mm0g74z8aiaafjk48pqcwxvjj9av7xjg";
};
2016-11-23 14:56:15 +00:00
nativeBuildInputs = [ fontforge ] ++ (with python2Packages; [ python fonttools ]);
postPatch = ''
rm *.otf
substituteInPlace tools/postprocess.py --replace \
'font = ttLib.TTFont(sys.argv[1])' \
'font = ttLib.TTFont(sys.argv[1], recalcTimestamp=False)'
2016-11-23 14:56:15 +00:00
'';
2016-05-11 03:26:05 +00:00
installPhase = ''
mkdir -p $out/share/fonts/opentype
cp *.otf $out/share/fonts/opentype
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "00xycmb9ka67j5s66nkng53y8q6362igisxz04zb58r2717jk50m";
2016-05-11 03:26:05 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/khaledhosny/xits-math;
2016-05-11 03:26:05 +00:00
description = "OpenType implementation of STIX fonts with math support";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
};
}