0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
24 lines
827 B
Nix
24 lines
827 B
Nix
# when changing this expression convert it from 'fetchzip' to 'stdenvNoCC.mkDerivation'
|
|
{ lib, fetchzip }:
|
|
|
|
let
|
|
version = "2.2";
|
|
in
|
|
(fetchzip {
|
|
name = "ultimate-oldschool-pc-font-pack-${version}";
|
|
url = "https://int10h.org/oldschool-pc-fonts/download/oldschool_pc_font_pack_v${version}_linux.zip";
|
|
sha256 = "sha256-BOA2fMa2KT3Bkpvj/0DzrzuZbl3RARvNn4qbI/+dApU=";
|
|
|
|
meta = with lib; {
|
|
description = "The Ultimate Oldschool PC Font Pack (TTF Fonts)";
|
|
homepage = "https://int10h.org/oldschool-pc-fonts/";
|
|
changelog = "https://int10h.org/oldschool-pc-fonts/readme/#history";
|
|
license = licenses.cc-by-sa-40;
|
|
maintainers = [ maintainers.endgame ];
|
|
};
|
|
}).overrideAttrs (_: {
|
|
postFetch= ''
|
|
mkdir -p $out/share/fonts/truetype
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
|
'';
|
|
})
|