2019-05-13 03:55:32 +02:00
|
|
|
{ lib, fetchzip }:
|
2018-09-03 08:47:12 +02:00
|
|
|
|
2018-09-29 21:49:37 +02:00
|
|
|
let
|
2021-11-05 09:07:47 +01:00
|
|
|
version = "2.2";
|
2018-09-29 21:49:37 +02:00
|
|
|
in
|
2019-08-13 23:52:01 +02:00
|
|
|
fetchzip {
|
2018-09-29 21:49:37 +02:00
|
|
|
name = "ultimate-oldschool-pc-font-pack-${version}";
|
2021-11-05 09:07:47 +01:00
|
|
|
url = "https://int10h.org/oldschool-pc-fonts/download/oldschool_pc_font_pack_v${version}_linux.zip";
|
|
|
|
sha256 = "sha256-BOA2fMa2KT3Bkpvj/0DzrzuZbl3RARvNn4qbI/+dApU=";
|
2018-09-03 08:47:12 +02:00
|
|
|
|
2018-09-29 21:49:37 +02:00
|
|
|
postFetch= ''
|
2018-09-03 08:47:12 +02:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
2018-09-29 21:49:37 +02:00
|
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
2018-09-03 08:47:12 +02:00
|
|
|
'';
|
|
|
|
|
2019-05-13 03:55:32 +02:00
|
|
|
meta = with lib; {
|
2018-09-03 08:47:12 +02:00
|
|
|
description = "The Ultimate Oldschool PC Font Pack (TTF Fonts)";
|
2020-01-22 11:26:22 +01:00
|
|
|
homepage = "https://int10h.org/oldschool-pc-fonts/";
|
2021-10-02 06:57:29 +02:00
|
|
|
changelog = "https://int10h.org/oldschool-pc-fonts/readme/#history";
|
2018-09-03 08:47:12 +02:00
|
|
|
license = licenses.cc-by-sa-40;
|
|
|
|
maintainers = [ maintainers.endgame ];
|
|
|
|
};
|
|
|
|
}
|