about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorMonson Shao <holymonson@gmail.com>2022-12-15 16:14:44 +0800
committerMonson Shao <holymonson@gmail.com>2022-12-15 16:14:44 +0800
commit8d6499746489f84b073e1525cbd7603400fa04bb (patch)
tree6cb1dba0354a155047d36af120bf5bebb70c7151 /pkgs/servers/http
parent38358880b31c619a4596f3a462095a7f41ed0eb1 (diff)
dufs: skip checkPhase on darwin
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/dufs/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/servers/http/dufs/default.nix b/pkgs/servers/http/dufs/default.nix
index af02b7199610e..e7229a3d3a67f 100644
--- a/pkgs/servers/http/dufs/default.nix
+++ b/pkgs/servers/http/dufs/default.nix
@@ -23,6 +23,9 @@ rustPlatform.buildRustPackage rec {
     Security
   ];
 
+  # FIXME: checkPhase on darwin will leave some zombie spawn processes
+  # see https://github.com/NixOS/nixpkgs/issues/205620
+  doCheck = !stdenv.isDarwin;
   checkFlags = [
     # tests depend on network interface, may fail with virtual IPs.
     "--skip=validate_printed_urls"