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

32 lines
757 B
Nix
Raw Normal View History

2019-11-09 14:10:15 +00:00
{ stdenv, fetchFromGitHub, python3Packages}:
2016-05-11 03:26:05 +00:00
stdenv.mkDerivation rec {
pname = "xits-math";
2019-11-09 08:58:03 +00:00
version = "1.301";
2016-05-11 03:26:05 +00:00
src = fetchFromGitHub {
2019-06-02 18:55:22 +00:00
owner = "alif-type";
repo = "xits";
2016-05-11 03:26:05 +00:00
rev = "v${version}";
2019-11-09 08:58:03 +00:00
sha256 = "043g0gnjc7wn1szvrs0rc1vvrq1qmhqh45b0y2kwrlxsgprpv8ll";
2016-05-11 03:26:05 +00:00
};
2019-11-09 14:10:15 +00:00
nativeBuildInputs = (with python3Packages; [ python fonttools fontforge ]);
2016-11-23 14:56:15 +00:00
postPatch = ''
rm *.otf
'';
2016-05-11 03:26:05 +00:00
installPhase = ''
install -m444 -Dt $out/share/fonts/opentype *.otf
2016-05-11 03:26:05 +00:00
'';
meta = with stdenv.lib; {
2019-11-09 08:58:34 +00:00
homepage = "https://github.com/alif-type/xits";
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 ];
};
}