about summary refs log tree commit diff
path: root/pkgs/development/libraries/mimalloc
diff options
context:
space:
mode:
authorMark Vainomaa <mikroskeem@mikroskeem.eu>2021-06-29 04:28:36 +0300
committerMark Vainomaa <mikroskeem@mikroskeem.eu>2021-06-29 04:30:57 +0300
commit89400633b973709eeb1276e1008bb181e39b5b50 (patch)
tree485e06db5fbb486ca16de2f124cb1d189c8b40f1 /pkgs/development/libraries/mimalloc
parent58e6fa615a9e7fe7a6f6ae7f8c705dabeab292ae (diff)
mimalloc: revert doCheck enable
For some reason, test fails with binary not being able to find
libmimalloc.so.2.0. Manually specifying LD_LIBRARY_PATH gets it working,
which does not look like a very viable fix.
Diffstat (limited to 'pkgs/development/libraries/mimalloc')
-rw-r--r--pkgs/development/libraries/mimalloc/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/development/libraries/mimalloc/default.nix b/pkgs/development/libraries/mimalloc/default.nix
index 17c166c41ff09..1e9e44e09973a 100644
--- a/pkgs/development/libraries/mimalloc/default.nix
+++ b/pkgs/development/libraries/mimalloc/default.nix
@@ -39,8 +39,6 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" ];
 
-  doCheck = true;
-
   meta = with lib; {
     description = "Compact, fast, general-purpose memory allocator";
     homepage    = "https://github.com/microsoft/mimalloc";