summary refs log tree commit diff
path: root/pkgs/applications/networking/errbot
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-02-29 15:08:30 -0800
committerJon <jonringer@users.noreply.github.com>2020-02-29 15:58:35 -0800
commitba27e63d8e18919cdd667aff791e5735e54ea85d (patch)
treec472f439ebfaca5f3593bee5d52b0917041b26b3 /pkgs/applications/networking/errbot
parent56d4afdc8354f477badd1bb076c773963f8e65a9 (diff)
downloadnixpkgs-ba27e63d8e18919cdd667aff791e5735e54ea85d.tar
nixpkgs-ba27e63d8e18919cdd667aff791e5735e54ea85d.tar.gz
nixpkgs-ba27e63d8e18919cdd667aff791e5735e54ea85d.tar.bz2
nixpkgs-ba27e63d8e18919cdd667aff791e5735e54ea85d.tar.lz
nixpkgs-ba27e63d8e18919cdd667aff791e5735e54ea85d.tar.xz
nixpkgs-ba27e63d8e18919cdd667aff791e5735e54ea85d.tar.zst
nixpkgs-ba27e63d8e18919cdd667aff791e5735e54ea85d.zip
errbot: disable for darwin
At least tests seem to be flaky there.
Diffstat (limited to 'pkgs/applications/networking/errbot')
-rw-r--r--pkgs/applications/networking/errbot/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/errbot/default.nix b/pkgs/applications/networking/errbot/default.nix
index 66dc8e0d0b5..d5dc287ecac 100644
--- a/pkgs/applications/networking/errbot/default.nix
+++ b/pkgs/applications/networking/errbot/default.nix
@@ -70,6 +70,7 @@ py.pkgs.buildPythonApplication rec {
     homepage = http://errbot.io/;
     maintainers = with maintainers; [ fpletz globin ];
     license = licenses.gpl3;
-    platforms = platforms.unix;
+    platforms = platforms.linux;
+    # flaky on darwin, "RuntimeError: can't start new thread"
   };
 }