2013-07-20 13:01:41 +02:00
|
|
|
{ stdenv, fetchurl, emacs, texinfo }:
|
2008-07-07 13:49:57 +02:00
|
|
|
|
2013-06-03 10:51:27 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-07-20 13:01:41 +02:00
|
|
|
name = "haskell-mode-13.07";
|
2009-11-04 11:29:38 +01:00
|
|
|
|
2013-06-03 10:51:27 +02:00
|
|
|
src = fetchurl {
|
2013-07-20 13:01:41 +02:00
|
|
|
url = "https://github.com/haskell/haskell-mode/archive/v13.07.tar.gz";
|
|
|
|
sha256 = "15c8ncj9mykkrizy1a8l94gq37s8hj13v3p5rgyaj9z0cwgl85kx";
|
2005-12-22 11:49:43 +01:00
|
|
|
};
|
2009-11-04 11:29:38 +01:00
|
|
|
|
2013-07-20 13:01:41 +02:00
|
|
|
buildInputs = [ emacs texinfo ];
|
2009-11-04 11:29:38 +01:00
|
|
|
|
2008-09-02 15:51:32 +02:00
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out/share/emacs/site-lisp"
|
2008-07-07 13:49:57 +02:00
|
|
|
cp *.el *.elc *.hs "$out/share/emacs/site-lisp/"
|
|
|
|
'';
|
2010-10-07 15:13:42 +02:00
|
|
|
|
|
|
|
meta = {
|
2012-03-21 12:46:18 +01:00
|
|
|
homepage = "http://github.com/haskell/haskell-mode";
|
|
|
|
description = "Haskell mode for Emacs";
|
2010-10-07 15:13:42 +02:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
2005-12-22 11:49:43 +01:00
|
|
|
}
|