a058381657
This expression can now be generated by cabal2nix. Note that it doesn't propagate Emacs and haskell-mode, though, these dependencies must be installed by the user in addition to ghc-mod. To active ghc-mod, add the following snippet to your ~/.emacs file: (autoload 'ghc-init "ghc" nil t) (add-hook 'haskell-mode-hook (lambda () (ghc-init))) svn path=/nixpkgs/trunk/; revision=33410
37 lines
974 B
Nix
37 lines
974 B
Nix
{ cabal, Cabal, emacs, filepath, ghcPaths, ghcSybUtils, hlint
|
|
, ioChoice, regexPosix, syb, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ghc-mod";
|
|
version = "1.10.11";
|
|
sha256 = "0s2amrikrlcgiy9iw6f1s43k2lzy9jaiddky078qp1pbk68dhbk9";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
Cabal filepath ghcPaths ghcSybUtils hlint ioChoice regexPosix syb
|
|
transformers
|
|
];
|
|
buildTools = [ emacs ];
|
|
postInstall = ''
|
|
cd $out/share/$pname-$version
|
|
make
|
|
rm Makefile
|
|
cd ..
|
|
ensureDir "$out/share/emacs"
|
|
mv $pname-$version emacs/site-lisp
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
|
|
description = "Happy Haskell programming on Emacs/Vim";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.bluescreen303
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|