about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-09-25 06:19:23 +0200
committerGitHub <noreply@github.com>2020-09-25 06:19:23 +0200
commita2960ac430c919c5f08d7ddc5c8e65e398ca1656 (patch)
treee485e46ee7ab559fbc84e506b8f9349ac5da7e0c /pkgs/applications/networking/browsers
parent45402e454f79933b2c94a00af2f2a10b9f17ea26 (diff)
parenta6c17c9cdd23af192a811e6c7b3cfb37fcd986fb (diff)
Merge pull request #97603 from zowoq/rust-test-threads
Diffstat (limited to 'pkgs/applications/networking/browsers')
-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 ];
   };
 }
-