From 89400633b973709eeb1276e1008bb181e39b5b50 Mon Sep 17 00:00:00 2001 From: Mark Vainomaa Date: Tue, 29 Jun 2021 04:28:36 +0300 Subject: [PATCH] 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. --- pkgs/development/libraries/mimalloc/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/libraries/mimalloc/default.nix b/pkgs/development/libraries/mimalloc/default.nix index 17c166c41ff..1e9e44e0997 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";