3
0
Fork 0
forked from mirrors/nixpkgs

iosevka: enable parallel building

This commit is contained in:
Orivej Desh 2017-11-27 00:48:43 +00:00
parent 7adc86753a
commit 37056c3724

View file

@ -70,13 +70,7 @@ stdenv.mkDerivation {
runHook postConfigure
'';
buildPhase = ''
runHook preBuild
${if custom then ''make custom set=${set}'' else ''make''}
runHook postBuild
'';
makeFlags = lib.optionals custom [ "custom" "set=${set}" ];
installPhase = ''
runHook preInstall
@ -88,6 +82,8 @@ stdenv.mkDerivation {
runHook postInstall
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://be5invis.github.io/Iosevka/;
downloadPage = "https://github.com/be5invis/Iosevka/releases";