securefs: fix build w/glibc-2.34

Tests don't work in the sandbox and vendored catch2 doesn't compile, so
we disable the tests.

Failing Hydra build: https://hydra.nixos.org/build/163981825
This commit is contained in:
Maximilian Bosch 2022-01-28 21:17:27 +01:00
parent 6320b7240f
commit 25172c97d0
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -20,6 +20,10 @@ stdenv.mkDerivation rec {
./add-macfuse-support.patch
];
postPatch = ''
sed -i -e '/TEST_SOURCES/d' CMakeLists.txt
'';
nativeBuildInputs = [ cmake ];
buildInputs = [ fuse ];