mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
haskell-ghc-mod: updated to version 1.0.7
svn path=/nixpkgs/trunk/; revision=31814
This commit is contained in:
parent
19764552a0
commit
1898dbd6cb
|
@ -1,30 +1,26 @@
|
|||
{ cabal, attoparsec, attoparsecEnumerator, ghcPaths, hlint, regexPosix, emacs, emacs23Packages }:
|
||||
{ cabal, attoparsec, attoparsecEnumerator, enumerator, ghcPaths
|
||||
, hlint, regexPosix, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ghc-mod";
|
||||
version = "1.0.6";
|
||||
sha256 = "c075314de03209827a0e59ee3e63a4d21bc8edb024a1e36721eea248805b38ba";
|
||||
buildDepends = [
|
||||
attoparsec attoparsecEnumerator ghcPaths hlint regexPosix
|
||||
];
|
||||
# buildTools = [emacs emacs23];
|
||||
propagatedBuildInputs = [emacs emacs23Packages.haskellMode];
|
||||
version = "1.0.7";
|
||||
sha256 = "1l490cspz4cym9cwdjr4xz7080f30sl5cm6fslb51ayy2k37zfcx";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
postInstall = ''
|
||||
cd $out/share/$pname-$version
|
||||
make
|
||||
rm Makefile
|
||||
cd ..
|
||||
ensureDir "$out/share/emacs"
|
||||
mv $pname-$version emacs/site-lisp
|
||||
'';
|
||||
|
||||
buildDepends = [
|
||||
attoparsec attoparsecEnumerator enumerator ghcPaths hlint
|
||||
regexPosix transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
|
||||
description = "Happy Haskell programming on Emacs";
|
||||
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
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue