2022-08-14 05:09:06 +02:00
|
|
|
{ stdenv, lib, pkgs, fetchFromGitHub, nodejs, remarshal
|
2020-10-31 13:41:39 +01:00
|
|
|
, ttfautohint-nox
|
2021-02-09 00:47:20 +01:00
|
|
|
# Custom font set options.
|
|
|
|
# See https://typeof.net/Iosevka/customizer
|
|
|
|
# Can be a raw TOML string, or a Nix attrset.
|
2017-11-19 19:29:40 +01:00
|
|
|
|
2021-02-09 00:47:20 +01: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";
|
|
|
|
# };
|
|
|
|
# }
|
2019-09-21 18:39:15 +02:00
|
|
|
, privateBuildPlan ? null
|
2019-10-26 22:26:01 +02:00
|
|
|
# Extra parameters. Can be used for ligature mapping.
|
2021-02-09 00:47:20 +01:00
|
|
|
# It must be a raw TOML string.
|
|
|
|
|
2019-10-26 22:26:01 +02:00
|
|
|
# Ex:
|
2021-02-09 00:47:20 +01:00
|
|
|
# extraParameters = ''
|
|
|
|
# [[iosevka.compLig]]
|
|
|
|
# unicode = 57808 # 0xe1d0
|
|
|
|
# featureTag = 'XHS0'
|
|
|
|
# sequence = "+>"
|
|
|
|
# '';
|
2019-09-21 18:39:15 +02:00
|
|
|
, extraParameters ? null
|
2019-10-26 22:26:01 +02:00
|
|
|
# Custom font set name. Required if any custom settings above.
|
|
|
|
, set ? null }:
|
2017-11-19 19:03:51 +01:00
|
|
|
|
2019-09-21 18:39:15 +02:00
|
|
|
assert (privateBuildPlan != null) -> set != null;
|
2021-02-09 00:47:20 +01:00
|
|
|
assert (extraParameters != null) -> set != null;
|
2017-11-19 19:03:51 +01:00
|
|
|
|
2020-10-31 02:22:01 +01:00
|
|
|
let
|
|
|
|
# We don't know the attribute name for the Iosevka package as it
|
|
|
|
# changes not when our update script is run (which in turn updates
|
|
|
|
# node-packages.json, but when node-packages/generate.sh is run
|
|
|
|
# (which updates node-packages.nix).
|
|
|
|
#
|
|
|
|
# Doing it this way ensures that the package can always be built,
|
|
|
|
# although possibly an older version than ioseva-bin.
|
2022-08-14 05:09:06 +02:00
|
|
|
nodeIosevka = (import ./node-composition.nix {
|
|
|
|
inherit pkgs nodejs;
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
}).package.override {
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "be5invis";
|
|
|
|
repo = "Iosevka";
|
|
|
|
rev = "v15.6.3";
|
|
|
|
hash = "sha256-wsFx5sD1CjQTcmwpLSt97OYFI8GtVH54uvKQLU1fWTg=";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-10-31 02:22:01 +01:00
|
|
|
in
|
2019-09-21 18:39:15 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-10-26 22:26:01 +02:00
|
|
|
pname = if set != null then "iosevka-${set}" else "iosevka";
|
2020-10-31 02:22:01 +01:00
|
|
|
inherit (nodeIosevka) version src;
|
2015-11-24 01:51:31 +01:00
|
|
|
|
2019-09-21 18:39:15 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
nodejs
|
|
|
|
remarshal
|
|
|
|
ttfautohint-nox
|
|
|
|
];
|
2017-11-19 19:03:51 +01:00
|
|
|
|
2021-02-09 00:47:20 +01:00
|
|
|
buildPlan =
|
|
|
|
if builtins.isAttrs privateBuildPlan
|
|
|
|
then builtins.toJSON { buildPlans.${pname} = privateBuildPlan; }
|
|
|
|
else privateBuildPlan;
|
|
|
|
|
2019-10-26 22:26:01 +02:00
|
|
|
inherit extraParameters;
|
2022-07-15 09:21:46 +02:00
|
|
|
passAsFile = [
|
|
|
|
"extraParameters"
|
2022-10-06 18:38:53 +02:00
|
|
|
] ++ lib.optionals (! (builtins.isString privateBuildPlan && lib.hasPrefix builtins.storeDir privateBuildPlan)) [
|
2022-07-15 09:21:46 +02:00
|
|
|
"buildPlan"
|
|
|
|
];
|
2017-11-19 19:03:51 +01:00
|
|
|
|
2017-11-19 19:29:40 +01:00
|
|
|
configurePhase = ''
|
2019-09-21 18:39:15 +02:00
|
|
|
runHook preConfigure
|
2021-02-09 00:47:20 +01:00
|
|
|
${lib.optionalString (builtins.isAttrs privateBuildPlan) ''
|
|
|
|
remarshal -i "$buildPlanPath" -o private-build-plans.toml -if json -of toml
|
|
|
|
''}
|
2022-07-15 09:21:46 +02:00
|
|
|
${lib.optionalString (builtins.isString privateBuildPlan && (!lib.hasPrefix builtins.storeDir privateBuildPlan)) ''
|
2021-02-09 00:47:20 +01:00
|
|
|
cp "$buildPlanPath" private-build-plans.toml
|
2019-09-21 18:39:15 +02:00
|
|
|
''}
|
2022-07-15 09:21:46 +02:00
|
|
|
${lib.optionalString (builtins.isString privateBuildPlan && (lib.hasPrefix builtins.storeDir privateBuildPlan)) ''
|
|
|
|
cp "$buildPlan" private-build-plans.toml
|
|
|
|
''}
|
2019-09-21 18:39:15 +02:00
|
|
|
${lib.optionalString (extraParameters != null) ''
|
2020-11-25 10:12:05 +01:00
|
|
|
echo -e "\n" >> params/parameters.toml
|
|
|
|
cat "$extraParametersPath" >> params/parameters.toml
|
2019-09-21 18:39:15 +02:00
|
|
|
''}
|
2020-10-31 02:22:01 +01:00
|
|
|
ln -s ${nodeIosevka}/lib/node_modules/iosevka/node_modules .
|
2019-09-21 18:39:15 +02:00
|
|
|
runHook postConfigure
|
2017-11-19 19:29:40 +01:00
|
|
|
'';
|
|
|
|
|
2019-09-14 22:11:28 +02:00
|
|
|
buildPhase = ''
|
2022-06-05 22:38:45 +02:00
|
|
|
export HOME=$TMPDIR
|
2019-09-21 18:39:15 +02:00
|
|
|
runHook preBuild
|
2022-08-14 05:09:06 +02:00
|
|
|
npm run build --no-update-notifier -- --jCmd=$NIX_BUILD_CORES --verbose=9 ttf::$pname
|
2019-09-21 18:39:15 +02:00
|
|
|
runHook postBuild
|
2019-09-14 22:11:28 +02:00
|
|
|
'';
|
2017-11-19 19:29:40 +01:00
|
|
|
|
2017-11-19 19:03:51 +01:00
|
|
|
installPhase = ''
|
2020-10-31 02:22:01 +01:00
|
|
|
runHook preInstall
|
2020-08-11 11:52:53 +02:00
|
|
|
fontdir="$out/share/fonts/truetype"
|
2017-11-19 19:29:40 +01:00
|
|
|
install -d "$fontdir"
|
|
|
|
install "dist/$pname/ttf"/* "$fontdir"
|
2020-10-31 02:22:01 +01:00
|
|
|
runHook postInstall
|
2017-11-19 19:03:51 +01:00
|
|
|
'';
|
2017-08-11 06:01:26 +02:00
|
|
|
|
2017-11-27 01:48:43 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-10-31 13:49:59 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = ./update-default.sh;
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-10-26 22:26:01 +02:00
|
|
|
homepage = "https://be5invis.github.io/Iosevka";
|
|
|
|
downloadPage = "https://github.com/be5invis/Iosevka/releases";
|
2015-11-24 01:51:31 +01:00
|
|
|
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;
|
2019-09-22 20:07:10 +02:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
cstrahan
|
|
|
|
jfrankenau
|
|
|
|
ttuegel
|
|
|
|
babariviere
|
|
|
|
rileyinman
|
2020-10-31 13:45:18 +01:00
|
|
|
AluisioASG
|
2019-09-22 20:07:10 +02:00
|
|
|
];
|
2015-11-24 01:51:31 +01:00
|
|
|
};
|
|
|
|
}
|