b41113241d
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ callPackage, lib, fetchFromSourcehut }:
|
|
|
|
let
|
|
sets = [
|
|
# The compact, sans-serif set:
|
|
"comfy"
|
|
"comfy-fixed"
|
|
"comfy-duo"
|
|
# The compact, serif set:
|
|
"comfy-motion"
|
|
"comfy-motion-fixed"
|
|
"comfy-motion-duo"
|
|
# The wide, sans-serif set:
|
|
"comfy-wide"
|
|
"comfy-wide-fixed"
|
|
"comfy-wide-duo"
|
|
];
|
|
version = "1.0.0";
|
|
src = fetchFromSourcehut {
|
|
owner = "~protesilaos";
|
|
repo = "iosevka-comfy";
|
|
rev = version;
|
|
sha256 = "0psbz40hicv3v3x7yq26hy6nfbzml1kha24x6a88rfrncdp6bds7";
|
|
};
|
|
privateBuildPlan = src.outPath + "/private-build-plans.toml";
|
|
overrideAttrs = (attrs: {
|
|
inherit version;
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = ''
|
|
Customised build of the Iosevka typeface, with a consistent
|
|
rounded style and overrides for almost all individual glyphs
|
|
in both roman (upright) and italic (slanted) variants.
|
|
'';
|
|
license = licenses.ofl;
|
|
platforms = attrs.meta.platforms;
|
|
maintainers = [ maintainers.DamienCassou ];
|
|
};
|
|
});
|
|
makeIosevkaFont = set:
|
|
(callPackage ./. { inherit set privateBuildPlan; }).overrideAttrs
|
|
overrideAttrs;
|
|
in builtins.listToAttrs (builtins.map (set: {
|
|
name = set;
|
|
value = makeIosevkaFont set;
|
|
}) sets)
|