cryptsetup: skip tests on musl

The test [7] header backup in compat-test fails with a mysterious
"out of memory" error, even though tons of memory is available.
Issue filed upstream: https://gitlab.com/cryptsetup/cryptsetup/-/issues/763
This commit is contained in:
Yureka 2022-08-13 14:34:25 +02:00 committed by Yuka
parent f95d9a668e
commit 53b36c9c5b

View file

@ -42,7 +42,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ lvm2 json_c openssl libuuid popt ];
doCheck = true;
# The test [7] header backup in compat-test fails with a mysterious
# "out of memory" error, even though tons of memory is available.
# Issue filed upstream: https://gitlab.com/cryptsetup/cryptsetup/-/issues/763
doCheck = !stdenv.hostPlatform.isMusl;
meta = {
homepage = "https://gitlab.com/cryptsetup/cryptsetup/";