{ stdenv, fetchurl, ncurses, pkgconfig, texinfo, libxml2, gnutls }: stdenv.mkDerivation rec { emacsName = "emacs-24.3"; name = "${emacsName}-mac-4.8"; #builder = ./builder.sh; src = fetchurl { url = "mirror://gnu/emacs/${emacsName}.tar.xz"; sha256 = "1385qzs3bsa52s5rcncbrkxlydkw0ajzrvfxgv8rws5fx512kakh"; }; macportSrc = fetchurl { url = "ftp://ftp.math.s.chiba-u.ac.jp/emacs/${name}.tar.gz"; sha256 = "194y341zrpjp75mc3099kjc0inr1d379wwsnav257bwsc967h8yx"; }; buildInputs = [ ncurses pkgconfig texinfo libxml2 gnutls ]; postUnpack = '' mv $emacsName $name tar xzf $macportSrc mv $name $emacsName ''; preConfigure = '' patch -p0 < patch-mac # The search for 'tputs' will fail because it's in ncursesw within the # ncurses package, yet Emacs' configure script only looks in ncurses. # Further, we need to make sure that the -L option occurs before mention # of the library, so that it finds it within the Nix store. sed -i 's/tinfo ncurses/tinfo ncursesw/' configure ncurseslib=$(echo ${ncurses.lib}/lib | sed 's#/#\\/#g') sed -i "s/OLIBS=\$LIBS/OLIBS=\"-L$ncurseslib \$LIBS\"/" configure sed -i 's/LIBS="\$LIBS_TERMCAP \$LIBS"/LIBS="\$LIBS \$LIBS_TERMCAP"/' configure configureFlagsArray=( LDFLAGS=-L${ncurses.lib}/lib --with-xml2=yes --with-gnutls=yes --with-mac --enable-mac-app=$out/Applications ) makeFlagsArray=( CFLAGS=-O3 LDFLAGS="-O3 -L${ncurses.lib}/lib" ); ''; postInstall = '' cat >$out/share/emacs/site-lisp/site-start.el <