39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ cabal, Cabal, convertible, emacs, filepath, ghcPaths, ghcSybUtils
|
|
, hlint, hspec, ioChoice, syb, time, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ghc-mod";
|
|
version = "1.12.0";
|
|
sha256 = "01jq6hk8vcy47nc6gd4379k6kgjiyxy99j4pnc7nsdm63gnmr5l1";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
Cabal convertible filepath ghcPaths ghcSybUtils hlint ioChoice syb
|
|
time transformers
|
|
];
|
|
testDepends = [
|
|
Cabal convertible filepath ghcPaths ghcSybUtils hlint hspec
|
|
ioChoice syb time 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
|
|
];
|
|
};
|
|
})
|