{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / xits-math / default.nix
blob9e3c013f44ded05c96e66b08e663a5f07ca778f4
1 { lib, stdenv, fetchFromGitHub, python3Packages}:
3 stdenv.mkDerivation rec {
4   pname = "xits-math";
5   version = "1.302";
7   src = fetchFromGitHub {
8     owner = "alif-type";
9     repo = "xits";
10     rev = "v${version}";
11     sha256 = "1x3r505dylz9rz8dj98h5n9d0zixyxmvvhnjnms9qxdrz9bxy9g1";
12   };
14   nativeBuildInputs = (with python3Packages; [ python fonttools fontforge ]);
16   postPatch = ''
17     rm *.otf
18   '';
20   installPhase = ''
21     install -m444 -Dt $out/share/fonts/opentype *.otf
22   '';
24   meta = with lib; {
25     homepage = "https://github.com/alif-type/xits";
26     description = "OpenType implementation of STIX fonts with math support";
27     license = licenses.ofl;
28     platforms = platforms.all;
29     maintainers = with maintainers; [ abbradar ];
30   };