lol

cryfs: disable tests on Darwin

The tests [require macFUSE to be installed][1] on Darwin. This change
disable the tests because Hydra doesn't have it installed.

[1]: https://github.com/NixOS/nixpkgs/blob/master/doc/builders/packages/fuse.section.md

+2 -1
+2 -1
pkgs/tools/filesystems/cryfs/default.nix
··· 62 62 "-DBUILD_TESTING:BOOL=${if doCheck then "TRUE" else "FALSE"}" 63 63 ] ++ lib.optional doCheck "-DCMAKE_PREFIX_PATH=${gtest.dev}/lib/cmake"; 64 64 65 - doCheck = true; 65 + # macFUSE needs to be installed for the test to succeed on Darwin 66 + doCheck = !stdenv.isDarwin; 66 67 67 68 checkPhase = '' 68 69 # Skip CMakeFiles directory and tests depending on fuse (does not work well with sandboxing)