Merge pull request #258647 from wegank/igraph-fix

igraph: drop failing test on darwin
This commit is contained in:
Weijia Wang 2023-10-14 01:15:58 +02:00 committed by GitHub
commit bf1b7bc64a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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" ];