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

32 lines
776 B
Nix
Raw Normal View History

2016-11-23 14:56:15 +00:00
{ stdenv, fetchFromGitHub, python2Packages, fontforge }:
2016-05-11 04:26:05 +01:00
stdenv.mkDerivation rec {
pname = "xits-math";
2019-11-09 08:58:03 +00:00
version = "1.301";
2016-05-11 04:26:05 +01:00
src = fetchFromGitHub {
2019-06-02 19:55:22 +01:00
owner = "alif-type";
repo = "xits";
2016-05-11 04:26:05 +01:00
rev = "v${version}";
2019-11-09 08:58:03 +00:00
sha256 = "043g0gnjc7wn1szvrs0rc1vvrq1qmhqh45b0y2kwrlxsgprpv8ll";
2016-05-11 04:26:05 +01:00
};
2016-11-23 14:56:15 +00:00
nativeBuildInputs = [ fontforge ] ++ (with python2Packages; [ python fonttools ]);
postPatch = ''
rm *.otf
'';
2016-05-11 04:26:05 +01:00
installPhase = ''
install -m444 -Dt $out/share/fonts/opentype *.otf
2016-05-11 04:26:05 +01:00
'';
meta = with stdenv.lib; {
2019-11-09 08:58:34 +00:00
homepage = "https://github.com/alif-type/xits";
2016-05-11 04:26:05 +01:00
description = "OpenType implementation of STIX fonts with math support";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
};
}