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-30 10:01:47 +01:00
|
|
|
version = "2.0.3";
|
|
|
|
sha256 = "0f0n4cqpspad3ygw89rp8wj1gxb7mv5zrd8938zm1rn2mimihggr";
|
2013-05-21 09:58:34 +01:00
|
|
|
isLibrary = true;
|
2012-03-25 20:33:48 +01:00
|
|
|
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 = ''
|
2013-08-17 10:39:11 +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/";
|
2013-05-21 09:58:34 +01:00
|
|
|
description = "Happy Haskell Programming";
|
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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|