igraph: drop failing test on darwin

This commit is contained in:
Weijia Wang 2023-10-02 22:04:34 +02:00
parent d2f79d7443
commit a095a888bd

View File

@ -37,6 +37,10 @@ stdenv.mkDerivation (finalAttrs: {
postPatch = ''
echo "${finalAttrs.version}" > IGRAPH_VERSION
''
# https://github.com/igraph/igraph/issues/2340
+ lib.optionalString stdenv.isDarwin ''
sed -i "/safelocale/d" tests/CMakeLists.txt
'';
outputs = [ "out" "dev" "doc" ];