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:
Cole Helbling 2020-02-16 23:34:35 -08:00
parent 7996935668
commit e718c3a685
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C

View file

@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
runHook preBuild
npm run build -- ttf::$pname
npm run build -- ttf::$pname >/dev/null
runHook postBuild
'';