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

80 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, pkgs
, nodejs, remarshal, ttfautohint-nox, otfcc
2017-11-19 18:29:40 +00:00
# Custom font set options.
# See https://github.com/be5invis/Iosevka#build-your-own-style
, privateBuildPlan ? null
# Extra parameters. Can be used for ligature mapping.
, extraParameters ? null
# Custom font set name. Required if any custom settings above.
, set ? null
}:
assert (privateBuildPlan != null) -> set != null;
let
nodePackages = import ./node-packages.nix {
inherit pkgs nodejs;
inherit (stdenv.hostPlatform) system;
};
in
stdenv.mkDerivation rec {
pname =
if set != null
then "iosevka-${set}"
else "iosevka";
2015-12-17 09:26:57 +00:00
inherit (src) version;
2017-11-19 18:29:40 +00:00
src = nodePackages."iosevka-https://github.com/be5invis/Iosevka/archive/v2.3.0.tar.gz";
sourceRoot = "${src.name}/lib/node_modules/iosevka";
nativeBuildInputs = [
nodejs
remarshal
otfcc
ttfautohint-nox
];
privateBuildPlanJSON = builtins.toJSON { buildPlans.${pname} = privateBuildPlan; };
extraParametersJSON = builtins.toJSON { ${pname} = extraParameters; };
passAsFile = [ "privateBuildPlanJSON" "extraParametersJSON" ];
2017-11-19 18:29:40 +00:00
configurePhase = ''
runHook preConfigure
${lib.optionalString (privateBuildPlan != null) ''
remarshal -i "$privateBuildPlanJSONPath" -o private-build-plans.toml -if json -of toml
''}
${lib.optionalString (extraParameters != null) ''
remarshal -i "$extraParametersJSONPath" -o parameters.toml -if json -of toml
''}
runHook postConfigure
2017-11-19 18:29:40 +00:00
'';
buildPhase = ''
runHook preBuild
npm run build -- ttf::$pname
runHook postBuild
'';
2017-11-19 18:29:40 +00:00
installPhase = ''
2017-11-19 18:29:40 +00:00
fontdir="$out/share/fonts/$pname"
install -d "$fontdir"
install "dist/$pname/ttf"/* "$fontdir"
'';
2017-11-27 00:48:43 +00:00
enableParallelBuilding = true;
2016-07-04 07:16:40 +00:00
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 = with maintainers; [ cstrahan jfrankenau ttuegel babariviere ];
};
}