times-newer-roman: init at 2018-09-11

This commit is contained in:
Samuel Gräfenstein 2021-06-17 14:38:19 +02:00
parent 0b37436b8d
commit c0e4d8744a
No known key found for this signature in database
GPG key ID: EF76A063F15C63C8
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, fetchzip }:
let
version = "unstable-2018-09-11";
in
fetchzip {
name = "times-newer-roman-${version}";
url = "https://web.archive.org/web/20210609022835/https://timesnewerroman.com/assets/TimesNewerRoman.zip";
postFetch = ''
mkdir -p $out/share/fonts/opentype
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
'';
hash = "sha256-Hx59RYLLwfimEQjEEes0lCpg6iql46DFwhQ7kVGiEzc=";
meta = with lib; {
description = "A font that looks just like Times New Roman, except each character is 5-10% wider";
homepage = "https://timesnewerroman.com/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ samuelgrf ];
platforms = platforms.all;
};
}

View file

@ -22446,6 +22446,8 @@ in
theme-vertex = callPackage ../data/themes/vertex { };
times-newer-roman = callPackage ../data/fonts/times-newer-roman { };
tipa = callPackage ../data/fonts/tipa { };
ttf_bitstream_vera = callPackage ../data/fonts/ttf-bitstream-vera { };