From 36597471273cec11691d9db3f266b0297d094fef Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 4 Nov 2009 10:29:38 +0000 Subject: [PATCH] pkgs/applications/editors/emacs-modes/haskell/default.nix: updated to version 2.6.1 svn path=/nixpkgs/trunk/; revision=18089 --- .../editors/emacs-modes/haskell/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/haskell/default.nix b/pkgs/applications/editors/emacs-modes/haskell/default.nix index 157da1a4226..924234bb446 100644 --- a/pkgs/applications/editors/emacs-modes/haskell/default.nix +++ b/pkgs/applications/editors/emacs-modes/haskell/default.nix @@ -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/"