mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 08:28:20 +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: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "ghc-mod";
|
pname = "ghc-mod";
|
||||||
version = "1.0.6";
|
version = "1.0.7";
|
||||||
sha256 = "c075314de03209827a0e59ee3e63a4d21bc8edb024a1e36721eea248805b38ba";
|
sha256 = "1l490cspz4cym9cwdjr4xz7080f30sl5cm6fslb51ayy2k37zfcx";
|
||||||
buildDepends = [
|
isLibrary = false;
|
||||||
attoparsec attoparsecEnumerator ghcPaths hlint regexPosix
|
|
||||||
];
|
|
||||||
# buildTools = [emacs emacs23];
|
|
||||||
propagatedBuildInputs = [emacs emacs23Packages.haskellMode];
|
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
postInstall = ''
|
buildDepends = [
|
||||||
cd $out/share/$pname-$version
|
attoparsec attoparsecEnumerator enumerator ghcPaths hlint
|
||||||
make
|
regexPosix transformers
|
||||||
rm Makefile
|
];
|
||||||
cd ..
|
|
||||||
ensureDir "$out/share/emacs"
|
|
||||||
mv $pname-$version emacs/site-lisp
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
|
||||||
description = "Happy Haskell programming on Emacs";
|
description = "Happy Haskell programming on Emacs";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
maintainers = [
|
maintainers = [
|
||||||
|
self.stdenv.lib.maintainers.andres
|
||||||
self.stdenv.lib.maintainers.bluescreen303
|
self.stdenv.lib.maintainers.bluescreen303
|
||||||
|
self.stdenv.lib.maintainers.simons
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue