2012-10-23 17:29:58 +01:00
|
|
|
{ cabal, Cabal, convertible, emacs, filepath, ghcPaths, ghcSybUtils
|
2013-03-06 10:06:00 +00:00
|
|
|
, hlint, hspec, ioChoice, syb, time, transformers
|
2012-03-25 20:33:48 +01:00
|
|
|
}:
|
2012-01-18 20:32:34 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "ghc-mod";
|
2013-05-13 10:21:36 +01:00
|
|
|
version = "1.12.5";
|
|
|
|
sha256 = "1pl4ivbfp0mzglkpspvs6gnbqsqwdwjzmdx8vfijrv8n9jkw7xyj";
|
2012-03-25 20:33:48 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-01-18 20:32:34 +00:00
|
|
|
buildDepends = [
|
2013-03-06 10:06:00 +00:00
|
|
|
Cabal convertible filepath ghcPaths ghcSybUtils hlint ioChoice syb
|
|
|
|
time transformers
|
2012-01-18 20:32:34 +00:00
|
|
|
];
|
2013-03-01 09:41:32 +00:00
|
|
|
testDepends = [
|
|
|
|
Cabal convertible filepath ghcPaths ghcSybUtils hlint hspec
|
2013-03-06 10:06:00 +00:00
|
|
|
ioChoice syb time transformers
|
2013-03-01 09:41:32 +00:00
|
|
|
];
|
2012-03-25 20:33:48 +01:00
|
|
|
buildTools = [ emacs ];
|
2013-05-13 10:21:36 +01:00
|
|
|
doCheck = false;
|
2012-01-24 22:06:33 +00:00
|
|
|
postInstall = ''
|
2012-06-04 10:24:14 +01:00
|
|
|
cd $out/share/$pname-$version
|
|
|
|
make
|
|
|
|
rm Makefile
|
|
|
|
cd ..
|
|
|
|
ensureDir "$out/share/emacs"
|
|
|
|
mv $pname-$version emacs/site-lisp
|
|
|
|
'';
|
2012-01-18 20:32:34 +00:00
|
|
|
meta = {
|
2012-01-26 14:20:11 +00:00
|
|
|
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
|
2012-03-25 20:33:48 +01:00
|
|
|
description = "Happy Haskell programming on Emacs/Vim";
|
2012-01-18 20:32:34 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
2012-01-26 14:20:11 +00:00
|
|
|
self.stdenv.lib.maintainers.andres
|
2012-01-18 20:32:34 +00:00
|
|
|
self.stdenv.lib.maintainers.bluescreen303
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|