f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
33 lines
822 B
Nix
33 lines
822 B
Nix
{ stdenv, fetchFromGitHub, python2Packages, fontforge }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xits-math-${version}";
|
|
version = "1.108";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "khaledhosny";
|
|
repo = "xits-math";
|
|
rev = "v${version}";
|
|
sha256 = "08nn676c41a7gmmhrzi8mm0g74z8aiaafjk48pqcwxvjj9av7xjg";
|
|
};
|
|
|
|
nativeBuildInputs = [ fontforge ] ++ (with python2Packages; [ python fonttools ]);
|
|
|
|
postPatch = ''
|
|
rm *.otf
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/fonts/opentype
|
|
cp *.otf $out/share/fonts/opentype
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/khaledhosny/xits-math;
|
|
description = "OpenType implementation of STIX fonts with math support";
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|