lol

m4rie: fix build on aarch64-darwin

It appears m4rie only builds properly on Apple Clang; turning off
optimizations seems to resolve the failing test cases. See
https://bitbucket.org/malb/m4rie/issues/23/trying-to-compile-on-apple-m1

+3 -2
+3 -2
pkgs/development/libraries/science/math/m4rie/default.nix
··· 21 21 m4ri 22 22 ]; 23 23 24 + # does not compile correctly with -O2 on LLVM clang; see 25 + # https://bitbucket.org/malb/m4rie/issues/23/trying-to-compile-on-apple-m1 26 + makeFlags = [] ++ lib.optionals stdenv.isDarwin [ "CFLAGS=-O0" ]; 24 27 nativeBuildInputs = [ 25 28 autoreconfHook 26 29 ]; ··· 35 38 license = licenses.gpl2Plus; 36 39 maintainers = teams.sage.members; 37 40 platforms = platforms.unix; 38 - # never built on aarch64-darwin since first introduction in nixpkgs 39 - broken = stdenv.isDarwin && stdenv.isAarch64; 40 41 }; 41 42 }