Unverified Commit c85865ca authored by adisbladis's avatar adisbladis Committed by GitHub
Browse files

emacs: disable native compilation on Darwin (#401160)

parents 50838816 9fc2bfda
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -66,7 +66,11 @@
  zlib,

  # Boolean flags
  withNativeCompilation ? stdenv.buildPlatform.canExecute stdenv.hostPlatform,

  # FIXME: Native compilation breaks build and runtime on macOS 15.4;
  # see <https://github.com/NixOS/nixpkgs/issues/395169>.
  withNativeCompilation ?
    stdenv.buildPlatform.canExecute stdenv.hostPlatform && !stdenv.hostPlatform.isDarwin,
  noGui ? false,
  srcRepo ? true,
  withAcl ? false,