pkgs/applications/editors/emacs-modes/haskell/default.nix: updated to version 2.6.1

svn path=/nixpkgs/trunk/; revision=18089
This commit is contained in:
Peter Simons 2009-11-04 10:29:38 +00:00
parent b06c0d1a1d
commit 3659747127

View file

@ -1,15 +1,15 @@
{stdenv, fetchurl, emacs}:
stdenv.mkDerivation rec {
name = "haskell-mode-2.4";
name = "haskell-mode-2.6.1";
src = fetchurl {
url = "http://www.iro.umontreal.ca/~monnier/elisp/${name}.tar.gz";
sha256 = "1s2dd0clwm0qaq7z43vxx437l48c88yrd3z1a6qhbq8aak9y8jc5";
url = "http://projects.haskell.org/haskellmode-emacs/${name}.tar.gz";
sha256 = "cc33fd0d4692667a6eb56fea3dc549de3897d8dbb7b71818489760f45d564a76";
};
buildInputs = [emacs];
installPhase = ''
ensureDir "$out/share/emacs/site-lisp"
cp *.el *.elc *.hs "$out/share/emacs/site-lisp/"