summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/haskell
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-11-04 10:29:38 +0000
committerPeter Simons <simons@cryp.to>2009-11-04 10:29:38 +0000
commit36597471273cec11691d9db3f266b0297d094fef (patch)
tree5eca02d2ec1d1294e1b9db4a3e821bc0f76b883c /pkgs/applications/editors/emacs-modes/haskell
parentb06c0d1a1dd65115d82b29fe9fa8a9dac4143d47 (diff)
downloadnixlib-36597471273cec11691d9db3f266b0297d094fef.tar
nixlib-36597471273cec11691d9db3f266b0297d094fef.tar.gz
nixlib-36597471273cec11691d9db3f266b0297d094fef.tar.bz2
nixlib-36597471273cec11691d9db3f266b0297d094fef.tar.lz
nixlib-36597471273cec11691d9db3f266b0297d094fef.tar.xz
nixlib-36597471273cec11691d9db3f266b0297d094fef.tar.zst
nixlib-36597471273cec11691d9db3f266b0297d094fef.zip
pkgs/applications/editors/emacs-modes/haskell/default.nix: updated to version 2.6.1
svn path=/nixpkgs/trunk/; revision=18089
Diffstat (limited to 'pkgs/applications/editors/emacs-modes/haskell')
-rw-r--r--pkgs/applications/editors/emacs-modes/haskell/default.nix12
1 files 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 157da1a42265..924234bb446b 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/"