48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ cabal, Cabal, convertible, doctest, emacs, filepath, ghcPaths
|
|
, ghcSybUtils, hlint, hspec, ioChoice, syb, time, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ghc-mod";
|
|
version = "3.1.7";
|
|
sha256 = "1mv6m1fcqkm4i27jw1aniwfq2dhpn4m7kicyq4l70zmkfr7y7c5s";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
Cabal convertible filepath ghcPaths ghcSybUtils hlint ioChoice syb
|
|
time transformers
|
|
];
|
|
testDepends = [
|
|
Cabal convertible doctest 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
|
|
mv $out/bin/ghc-mod $out/bin/.ghc-mod-wrapped
|
|
cat - > $out/bin/ghc-mod <<EOF
|
|
#! ${self.stdenv.shell}
|
|
COMMAND=\$1
|
|
shift
|
|
eval exec $out/bin/.ghc-mod-wrapped \$COMMAND \$( ${self.ghc.GHCGetPackages} ${self.ghc.version} | tr " " "\n" | tail -n +2 | paste -d " " - - | sed 's/.*/-g "&"/' | tr "\n" " ") "\$@"
|
|
EOF
|
|
chmod +x $out/bin/ghc-mod
|
|
'';
|
|
meta = {
|
|
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
|
|
description = "Happy Haskell Programming";
|
|
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.ocharles
|
|
];
|
|
};
|
|
})
|