diff options
author | Sandro <sandro.jaeckel@gmail.com> | 2021-04-24 12:33:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 12:33:48 +0200 |
commit | 1341bcf1f8e2f5fbf685594789e6984203d2df79 (patch) | |
tree | 438bbcd8a657c57567ddfab6b59b52b315cbf5df | |
parent | d1bb63ed16c004a9fef93b9e2a5cac92eb438ad4 (diff) | |
parent | 755633ea54894e8f50a038c1e619e509d51bb93f (diff) |
Merge pull request #120496 from midchildan/fix/cryfs/darwin-binary-cache
cryfs: disable tests on Darwin
-rw-r--r-- | pkgs/tools/filesystems/cryfs/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/cryfs/default.nix b/pkgs/tools/filesystems/cryfs/default.nix index a0dc3124159e4..0da6c4c209944 100644 --- a/pkgs/tools/filesystems/cryfs/default.nix +++ b/pkgs/tools/filesystems/cryfs/default.nix @@ -62,7 +62,8 @@ stdenv.mkDerivation rec { "-DBUILD_TESTING:BOOL=${if doCheck then "TRUE" else "FALSE"}" ] ++ lib.optional doCheck "-DCMAKE_PREFIX_PATH=${gtest.dev}/lib/cmake"; - doCheck = true; + # macFUSE needs to be installed for the test to succeed on Darwin + doCheck = !stdenv.isDarwin; checkPhase = '' # Skip CMakeFiles directory and tests depending on fuse (does not work well with sandboxing) |