about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-01-01 10:05:46 -0500
committerGitHub <noreply@github.com>2023-01-01 10:05:46 -0500
commit3485460c0e75f76c04be735aa7c5d716c4566514 (patch)
tree92cac2f6821e7eb8c6e22dac355259ce89c9904d /pkgs/servers/http
parent304133f91d93168bd86daebfa5c679170f2a837d (diff)
parent8d6499746489f84b073e1525cbd7603400fa04bb (diff)
Merge pull request #206203 from holymonson/dufs
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"