summary refs log tree commit diff
path: root/pkgs/development/libraries/libtoxcore/default.nix
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-04-25 03:20:18 +0000
committerJan Malakhovski <oxij@oxij.org>2018-04-25 04:18:46 +0000
commit7438083a4d9d7b60b915d59e118f19398f177fe3 (patch)
treed3b029da9c936317d1eb7432f08ecb5ef32b4820 /pkgs/development/libraries/libtoxcore/default.nix
parentf07f0c6009bb4c2653350fac8db2eee29e09bd1b (diff)
downloadnixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.gz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.bz2
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.lz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.xz
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.tar.zst
nixlib-7438083a4d9d7b60b915d59e118f19398f177fe3.zip
tree-wide: disable `doCheck` and `doInstallCheck` where it fails (the trivial part)
Diffstat (limited to 'pkgs/development/libraries/libtoxcore/default.nix')
-rw-r--r--pkgs/development/libraries/libtoxcore/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libtoxcore/default.nix b/pkgs/development/libraries/libtoxcore/default.nix
index 16fca9ce3d39..5967d2f4c319 100644
--- a/pkgs/development/libraries/libtoxcore/default.nix
+++ b/pkgs/development/libraries/libtoxcore/default.nix
@@ -29,12 +29,11 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  checkInputs = [ check ];
-
-  checkPhase = "ctest";
+  doCheck = false; # hangs, tries to access the net?
 
   # for some reason the tests are not running - it says "No tests found!!"
-  doCheck = true;
+  checkInputs = [ check ];
+  checkPhase = "ctest";
 
   meta = with stdenv.lib; {
     description = "P2P FOSS instant messaging application aimed to replace Skype";