Merge pull request #132272 from angustrau/libgme

libgme: fix build on apple silicon

authored by Jörg Thalheim and committed by GitHub f5135a12 b983aec8

+3
+3
pkgs/development/libraries/audio/libgme/default.nix
··· 21 22 nativeBuildInputs = [ cmake removeReferencesTo ]; 23 24 # It used to reference it, in the past, but thanks to the postFixup hook, now 25 # it doesn't. 26 disallowedReferences = [ stdenv.cc.cc ];
··· 21 22 nativeBuildInputs = [ cmake removeReferencesTo ]; 23 24 + # These checks fail on aarch64-darwin 25 + cmakeFlags = [ "-DENABLE_UBSAN=OFF" ]; 26 + 27 # It used to reference it, in the past, but thanks to the postFixup hook, now 28 # it doesn't. 29 disallowedReferences = [ stdenv.cc.cc ];