e18d57f0e2
"iosevka" needs some work to update to 2.0.0 (config file must be used instead of arguments to make) but don't know that the two necessarily need to be at the same version. Also I "think" that using the 'ttc' zip is the equivalent of what was previously the "pack" but noting this here since haven't found this documented elsewhere and am not entirely sure.
29 lines
837 B
Nix
29 lines
837 B
Nix
{ stdenv, fetchzip }:
|
|
|
|
let
|
|
version = "2.0.0";
|
|
in fetchzip rec {
|
|
name = "iosevka-bin-${version}";
|
|
|
|
url = "https://github.com/be5invis/Iosevka/releases/download/v${version}/ttc-iosevka-${version}.zip";
|
|
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts
|
|
unzip -j $downloadedFile \*.ttc -d $out/share/fonts/iosevka
|
|
'';
|
|
|
|
sha256 = "17ldxs8rn4y5mzpc6h5rms4khk9fp4d1ixz5bh0pglh1kdansz45";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://be5invis.github.io/Iosevka/;
|
|
downloadPage = "https://github.com/be5invis/Iosevka/releases";
|
|
description = ''
|
|
Slender monospace sans-serif and slab-serif typeface inspired by Pragmata
|
|
Pro, M+ and PF DIN Mono, designed to be the ideal font for programming.
|
|
'';
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.cstrahan ];
|
|
};
|
|
}
|