about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/castor/default.nix
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-09-09 21:39:23 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-09-24 07:20:03 +1000
commitf294531f17b6daddc7a9b44df6844bdf04405420 (patch)
treea185a786501b1d2b2a544a0716a577c4b630d943 /pkgs/applications/networking/browsers/castor/default.nix
parente4c71e6c6c7612f8e0d40ba5b79322f0883fa500 (diff)
castor: use cargoParallelTestThreads
Diffstat (limited to 'pkgs/applications/networking/browsers/castor/default.nix')
-rw-r--r--pkgs/applications/networking/browsers/castor/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/networking/browsers/castor/default.nix b/pkgs/applications/networking/browsers/castor/default.nix
index dd8ddd2dccb85..c9ad213cf1d15 100644
--- a/pkgs/applications/networking/browsers/castor/default.nix
+++ b/pkgs/applications/networking/browsers/castor/default.nix
@@ -39,8 +39,7 @@ rustPlatform.buildRustPackage rec {
   postInstall = "make PREFIX=$out copy-data";
 
   # Sometimes tests fail when run in parallel
-  #checkFlags = [ "--test-threads=1" ];
-  doCheck = false;
+  cargoParallelTestThreads = false;
 
   meta = with stdenv.lib; {
     description = "A graphical client for plain-text protocols written in Rust with GTK. It currently supports the Gemini, Gopher and Finger protocols";
@@ -49,4 +48,3 @@ rustPlatform.buildRustPackage rec {
     maintainers = with maintainers; [ fgaz ];
   };
 }
-