forked from mirrors/nixpkgs
iosevka: enable parallel building
This commit is contained in:
parent
7adc86753a
commit
37056c3724
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue