about summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2020-02-16 23:34:35 -0800
committerCole Helbling <cole.e.helbling@outlook.com>2020-02-16 23:45:35 -0800
commite718c3a68558ff3b209df41fc5c3c79ef4788ad4 (patch)
treebf8201c5933d60334920c9c0bd4c03cad75749cf /pkgs/data/fonts
parent79969356682e7ea642a0ee934080cc769a689790 (diff)
downloadnixlib-e718c3a68558ff3b209df41fc5c3c79ef4788ad4.tar
nixlib-e718c3a68558ff3b209df41fc5c3c79ef4788ad4.tar.gz
nixlib-e718c3a68558ff3b209df41fc5c3c79ef4788ad4.tar.bz2
nixlib-e718c3a68558ff3b209df41fc5c3c79ef4788ad4.tar.lz
nixlib-e718c3a68558ff3b209df41fc5c3c79ef4788ad4.tar.xz
nixlib-e718c3a68558ff3b209df41fc5c3c79ef4788ad4.tar.zst
nixlib-e718c3a68558ff3b209df41fc5c3c79ef4788ad4.zip
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.
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/iosevka/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix
index e21110658261..e6e3aeba9dea 100644
--- a/pkgs/data/fonts/iosevka/default.nix
+++ b/pkgs/data/fonts/iosevka/default.nix
@@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
 
   buildPhase = ''
     runHook preBuild
-    npm run build -- ttf::$pname
+    npm run build -- ttf::$pname >/dev/null
     runHook postBuild
   '';