iosevka: don't show build progress
The node progress "bar" looks like crap when using `nix-build`. Redirect the infinite scrolling screen to `/dev/null` to calm the output down. Errors will still print because stderr isn't redirected.
This commit is contained in:
parent
7996935668
commit
e718c3a685
|
@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
runHook preBuild
|
runHook preBuild
|
||||||
npm run build -- ttf::$pname
|
npm run build -- ttf::$pname >/dev/null
|
||||||
runHook postBuild
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue