nixpkgs/pkgs/data/fonts/iosevka/comfy.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.3 KiB
Nix
Raw Normal View History

2022-09-03 08:04:00 +00:00
{ callPackage, lib, fetchFromSourcehut }:
2022-06-06 16:26:06 +00:00
let
2022-09-03 08:04:00 +00:00
sets = [
# The compact, sans-serif set:
2022-09-03 08:04:00 +00:00
"comfy"
"comfy-fixed"
"comfy-duo"
# The compact, serif set:
2022-09-03 08:04:00 +00:00
"comfy-motion"
2022-09-16 07:16:59 +00:00
"comfy-motion-fixed"
2022-09-03 08:04:00 +00:00
"comfy-motion-duo"
# The wide, sans-serif set:
"comfy-wide"
"comfy-wide-fixed"
2022-09-16 07:16:59 +00:00
"comfy-wide-duo"
2022-09-03 08:04:00 +00:00
];
2022-10-24 06:43:55 +00:00
version = "1.1.0";
2022-09-03 08:04:00 +00:00
src = fetchFromSourcehut {
owner = "~protesilaos";
2022-07-15 11:17:27 +00:00
repo = "iosevka-comfy";
rev = version;
2022-10-24 06:43:55 +00:00
sha256 = "1h72my1s9pvxww6yijrvhy7hj9dspnshya60i60p1wlzr6d18v3p";
2022-07-15 11:17:27 +00:00
};
privateBuildPlan = src.outPath + "/private-build-plans.toml";
2022-06-06 16:26:06 +00:00
overrideAttrs = (attrs: {
2022-07-15 11:17:27 +00:00
inherit version;
2022-06-06 16:26:06 +00:00
meta = with lib; {
2022-09-03 08:04:00 +00:00
inherit (src.meta) homepage;
2022-06-06 16:26:06 +00:00
description = ''
Customised build of the Iosevka typeface, with a consistent
rounded style and overrides for almost all individual glyphs
2022-09-03 08:04:00 +00:00
in both roman (upright) and italic (slanted) variants.
'';
2022-06-06 16:26:06 +00:00
license = licenses.ofl;
platforms = attrs.meta.platforms;
maintainers = [ maintainers.DamienCassou ];
};
});
2022-09-03 08:04:00 +00:00
makeIosevkaFont = set:
(callPackage ./. { inherit set privateBuildPlan; }).overrideAttrs
overrideAttrs;
in builtins.listToAttrs (builtins.map (set: {
name = set;
value = makeIosevkaFont set;
}) sets)