2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fontforge, python3 }:
|
2020-04-29 19:26:21 +01:00
|
|
|
let
|
|
|
|
inherit (python3.pkgs) fonttools;
|
|
|
|
|
2020-09-02 18:02:46 +01:00
|
|
|
commonNativeBuildInputs = [ fontforge python3 ];
|
2020-04-29 19:26:21 +01:00
|
|
|
common =
|
|
|
|
{ version, repo, sha256, nativeBuildInputs, postPatch ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "liberation-fonts";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "liberationfonts";
|
|
|
|
rev = version;
|
|
|
|
inherit repo sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit nativeBuildInputs postPatch;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;
|
|
|
|
|
|
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} AUTHORS || true
|
|
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} ChangeLog || true
|
|
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} COPYING || true
|
|
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} License.txt || true
|
|
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} README || true
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-29 19:26:21 +01:00
|
|
|
description = "Liberation Fonts, replacements for Times New Roman, Arial, and Courier New";
|
|
|
|
longDescription = ''
|
|
|
|
The Liberation Fonts are intended to be replacements for the three most
|
|
|
|
commonly used fonts on Microsoft systems: Times New Roman, Arial, and
|
|
|
|
Courier New. Since 2012 they are based on croscore fonts.
|
|
|
|
|
|
|
|
There are three sets: Sans (a substitute for Arial, Albany, Helvetica,
|
|
|
|
Nimbus Sans L, and Bitstream Vera Sans), Serif (a substitute for Times
|
|
|
|
New Roman, Thorndale, Nimbus Roman, and Bitstream Vera Serif) and Mono
|
|
|
|
(a substitute for Courier New, Cumberland, Courier, Nimbus Mono L, and
|
|
|
|
Bitstream Vera Sans Mono).
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
homepage = "https://github.com/liberationfonts";
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
liberation_ttf_v1 = common {
|
|
|
|
repo = "liberation-1.7-fonts";
|
|
|
|
version = "1.07.5";
|
2020-09-02 18:02:46 +01:00
|
|
|
nativeBuildInputs = commonNativeBuildInputs ;
|
2020-04-29 19:26:21 +01:00
|
|
|
sha256 = "1ffl10mf78hx598sy9qr5m6q2b8n3mpnsj73bwixnd4985gsz56v";
|
|
|
|
};
|
|
|
|
liberation_ttf_v2 = common {
|
|
|
|
repo = "liberation-fonts";
|
|
|
|
version = "2.1.0";
|
2020-09-02 18:02:46 +01:00
|
|
|
nativeBuildInputs = commonNativeBuildInputs ++ [ fonttools ];
|
2020-04-29 19:26:21 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace scripts/setisFixedPitch-fonttools.py --replace \
|
|
|
|
'font = ttLib.TTFont(fontfile)' \
|
|
|
|
'font = ttLib.TTFont(fontfile, recalcTimestamp=False)'
|
|
|
|
'';
|
|
|
|
sha256 = "03xpzaas264x5n6qisxkhc68pkpn32m7y78qdm3rdkxdwi8mv8mz";
|
|
|
|
};
|
|
|
|
}
|