mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
emacs24: clangStdenv is in fact needed on darwin
This commit is contained in:
parent
c0e26205f3
commit
643d2af2cd
1 changed files with 5 additions and 0 deletions
|
@ -8200,6 +8200,11 @@ let
|
|||
librsvg = null;
|
||||
alsaLib = null;
|
||||
imagemagick = null;
|
||||
|
||||
# resolve unrecognized section __static_data in __DATA segment
|
||||
stdenv = if stdenv.isDarwin
|
||||
then clangStdenv
|
||||
else stdenv;
|
||||
};
|
||||
|
||||
emacs24-nox = lowPrio (appendToName "nox" (emacs24.override {
|
||||
|
|
Loading…
Reference in a new issue