heroic: use qt6 version of kdialog (#372495)
[NixPkgs.git] / pkgs / by-name / ti / times-newer-roman / package.nix
blobf30b25165dacecfaa6797f82e6e6547f863e146d
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "times-newer-roman";
9   version = "unstable-2018-09-11";
11   src = fetchzip {
12     url = "https://web.archive.org/web/20210609022835/https://timesnewerroman.com/assets/TimesNewerRoman.zip";
13     stripRoot = false;
14     hash = "sha256-wO4rxyJNQyhRLpswCYKXdeiXy5G+iWyxulYCHZb60QM=";
15   };
17   installPhase = ''
18     runHook preInstall
20     mkdir -p $out/share/fonts/opentype
21     cp *.otf $out/share/fonts/opentype
23     runHook postInstall
24   '';
26   meta = with lib; {
27     description = "Font that looks just like Times New Roman, except each character is 5-10% wider";
28     homepage = "https://timesnewerroman.com/";
29     license = licenses.gpl2Plus;
30     maintainers = [ ];
31     platforms = platforms.all;
32   };