el-get/recipes/haskell-mode.rcp
David Holm 720a820c2d Use the correct Emacs when building haskell-mode
On MacOS X /usr/bin/emacs gets picked up which is too old to successfully build
haskell-mode.
2013-09-27 22:27:22 -07:00

11 lines
443 B
Plaintext

(:name haskell-mode
:description "A Haskell editing mode"
:type github
:pkgname "haskell/haskell-mode"
:info "."
:build `(("make" ,(format "EMACS=%s" el-get-emacs) "all"))
:post-init (progn
(require 'haskell-mode-autoloads)
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)))