2023-02-02 18:25:31 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, lib
|
|
|
|
|
, pkgs
|
|
|
|
|
, buildNpmPackage
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, nodejs
|
|
|
|
|
, remarshal
|
2020-11-06 00:33:48 +00:00
|
|
|
|
, ttfautohint-nox
|
2021-02-13 14:23:35 +00:00
|
|
|
|
# Custom font set options.
|
|
|
|
|
# See https://typeof.net/Iosevka/customizer
|
|
|
|
|
# Can be a raw TOML string, or a Nix attrset.
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
|
# Ex:
|
|
|
|
|
# privateBuildPlan = ''
|
|
|
|
|
# [buildPlans.iosevka-custom]
|
|
|
|
|
# family = "Iosevka Custom"
|
|
|
|
|
# spacing = "normal"
|
|
|
|
|
# serifs = "sans"
|
|
|
|
|
#
|
|
|
|
|
# [buildPlans.iosevka-custom.variants.design]
|
|
|
|
|
# capital-j = "serifless"
|
|
|
|
|
#
|
|
|
|
|
# [buildPlans.iosevka-custom.variants.italic]
|
|
|
|
|
# i = "tailed"
|
|
|
|
|
# '';
|
|
|
|
|
|
|
|
|
|
# Or:
|
|
|
|
|
# privateBuildPlan = {
|
|
|
|
|
# family = "Iosevka Custom";
|
|
|
|
|
# spacing = "normal";
|
|
|
|
|
# serifs = "sans";
|
|
|
|
|
#
|
|
|
|
|
# variants = {
|
|
|
|
|
# design.capital-j = "serifless";
|
|
|
|
|
# italic.i = "tailed";
|
|
|
|
|
# };
|
|
|
|
|
# }
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, privateBuildPlan ? null
|
|
|
|
|
# Extra parameters. Can be used for ligature mapping.
|
2021-02-13 14:23:35 +00:00
|
|
|
|
# It must be a raw TOML string.
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Ex:
|
2021-02-13 14:23:35 +00:00
|
|
|
|
# extraParameters = ''
|
|
|
|
|
# [[iosevka.compLig]]
|
|
|
|
|
# unicode = 57808 # 0xe1d0
|
|
|
|
|
# featureTag = 'XHS0'
|
|
|
|
|
# sequence = "+>"
|
|
|
|
|
# '';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, extraParameters ? null
|
|
|
|
|
# Custom font set name. Required if any custom settings above.
|
2023-02-02 18:25:31 +00:00
|
|
|
|
, set ? null
|
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
assert (privateBuildPlan != null) -> set != null;
|
2021-02-13 14:23:35 +00:00
|
|
|
|
assert (extraParameters != null) -> set != null;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
buildNpmPackage rec {
|
|
|
|
|
pname = if set != null then "iosevka-${set}" else "iosevka";
|
|
|
|
|
version = "17.1.0";
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "be5invis";
|
|
|
|
|
repo = "iosevka";
|
|
|
|
|
rev = "v${version}";
|
|
|
|
|
hash = "sha256-xGRymDhkNP9b2JYTEu4M/CrRINmMGY2S5ZuM3Ot1wGg=";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
npmDepsHash = "sha256-Ncf07ggyOnz/2SpgdmaYS2X/8Bad+J2sz8Yyx9Iri3E=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
nativeBuildInputs = [ nodejs remarshal ttfautohint-nox ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
|
buildPlan =
|
2023-02-02 18:25:31 +00:00
|
|
|
|
if builtins.isAttrs privateBuildPlan then
|
|
|
|
|
builtins.toJSON { buildPlans.${pname} = privateBuildPlan; }
|
|
|
|
|
else
|
|
|
|
|
privateBuildPlan;
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
inherit extraParameters;
|
2023-02-02 18:25:31 +00:00
|
|
|
|
passAsFile = [ "extraParameters" ] ++ lib.optionals
|
|
|
|
|
(
|
|
|
|
|
!(builtins.isString privateBuildPlan
|
|
|
|
|
&& lib.hasPrefix builtins.storeDir privateBuildPlan)
|
|
|
|
|
) [ "buildPlan" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
|
runHook preConfigure
|
2021-02-13 14:23:35 +00:00
|
|
|
|
${lib.optionalString (builtins.isAttrs privateBuildPlan) ''
|
|
|
|
|
remarshal -i "$buildPlanPath" -o private-build-plans.toml -if json -of toml
|
|
|
|
|
''}
|
2023-02-02 18:25:31 +00:00
|
|
|
|
${lib.optionalString (builtins.isString privateBuildPlan
|
|
|
|
|
&& (!lib.hasPrefix builtins.storeDir privateBuildPlan)) ''
|
|
|
|
|
cp "$buildPlanPath" private-build-plans.toml
|
|
|
|
|
''}
|
|
|
|
|
${lib.optionalString (builtins.isString privateBuildPlan
|
|
|
|
|
&& (lib.hasPrefix builtins.storeDir privateBuildPlan)) ''
|
|
|
|
|
cp "$buildPlan" private-build-plans.toml
|
|
|
|
|
''}
|
2020-04-24 23:36:52 +00:00
|
|
|
|
${lib.optionalString (extraParameters != null) ''
|
2020-11-30 08:33:03 +00:00
|
|
|
|
echo -e "\n" >> params/parameters.toml
|
|
|
|
|
cat "$extraParametersPath" >> params/parameters.toml
|
2020-04-24 23:36:52 +00:00
|
|
|
|
''}
|
|
|
|
|
runHook postConfigure
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
buildPhase = ''
|
2022-06-16 17:23:12 +00:00
|
|
|
|
export HOME=$TMPDIR
|
2020-04-24 23:36:52 +00:00
|
|
|
|
runHook preBuild
|
2022-08-21 13:32:41 +00:00
|
|
|
|
npm run build --no-update-notifier -- --jCmd=$NIX_BUILD_CORES --verbose=9 ttf::$pname
|
2020-04-24 23:36:52 +00:00
|
|
|
|
runHook postBuild
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-11-06 00:33:48 +00:00
|
|
|
|
runHook preInstall
|
2020-08-20 17:08:02 +00:00
|
|
|
|
fontdir="$out/share/fonts/truetype"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
install -d "$fontdir"
|
|
|
|
|
install "dist/$pname/ttf"/* "$fontdir"
|
2020-11-06 00:33:48 +00:00
|
|
|
|
runHook postInstall
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2023-02-02 18:25:31 +00:00
|
|
|
|
homepage = "https://typeof.net/Iosevka/";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
downloadPage = "https://github.com/be5invis/Iosevka/releases";
|
|
|
|
|
description = ''
|
2023-02-02 18:25:31 +00:00
|
|
|
|
Iosevka is an open-source, sans-serif + slab-serif, monospace +
|
|
|
|
|
quasi‑proportional typeface family, designed for writing code, using in
|
|
|
|
|
terminals, and preparing technical documents.
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
|
cstrahan
|
|
|
|
|
jfrankenau
|
|
|
|
|
ttuegel
|
|
|
|
|
babariviere
|
|
|
|
|
rileyinman
|
2020-11-06 00:33:48 +00:00
|
|
|
|
AluisioASG
|
2023-02-02 18:25:31 +00:00
|
|
|
|
lunik1
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|