summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-03-21 11:46:18 +0000
committerPeter Simons <simons@cryp.to>2012-03-21 11:46:18 +0000
commit4f576ac4b5d4c15703af4fb20015ed7dba0c4064 (patch)
treeda133195bd2614a75658e22d8667e63aa55d3ce3 /pkgs/applications/editors
parent115b3d943afb3f6640e4365b2f9ea59a9cda9561 (diff)
downloadnixpkgs-4f576ac4b5d4c15703af4fb20015ed7dba0c4064.tar
nixpkgs-4f576ac4b5d4c15703af4fb20015ed7dba0c4064.tar.gz
nixpkgs-4f576ac4b5d4c15703af4fb20015ed7dba0c4064.tar.bz2
nixpkgs-4f576ac4b5d4c15703af4fb20015ed7dba0c4064.tar.lz
nixpkgs-4f576ac4b5d4c15703af4fb20015ed7dba0c4064.tar.xz
nixpkgs-4f576ac4b5d4c15703af4fb20015ed7dba0c4064.tar.zst
nixpkgs-4f576ac4b5d4c15703af4fb20015ed7dba0c4064.zip
pkgs/applications/editors/emacs-modes/haskell: updated haskell-mode to the latest version from Github
svn path=/nixpkgs/trunk/; revision=33326
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/emacs-modes/haskell/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/applications/editors/emacs-modes/haskell/default.nix b/pkgs/applications/editors/emacs-modes/haskell/default.nix
index b73d91b611c..8e613572943 100644
--- a/pkgs/applications/editors/emacs-modes/haskell/default.nix
+++ b/pkgs/applications/editors/emacs-modes/haskell/default.nix
@@ -1,11 +1,12 @@
-{stdenv, fetchurl, emacs}:
+{ stdenv, fetchgit, emacs }:
 
-stdenv.mkDerivation rec {
-  name = "haskell-mode-2.8.0";
+stdenv.mkDerivation {
+  name = "haskell-mode-2.8.0.29-gc906ee1";
 
-  src = fetchurl {
-    url = "http://projects.haskell.org/haskellmode-emacs/${name}.tar.gz";
-    sha256 = "1065g4xy3ca72xhqh6hfxs5j3mls82bli8w5rhz1npzyfwlwhkb1";
+  src = fetchgit {
+    url = "http://github.com/haskell/haskell-mode.git";
+    rev = "c906ee1fcc03a7c1c670bcaf9a8c8dc99117fca1";
+    sha256 = "a0857a690d85e09ea3ce94a9467335a91fee6a41b9fbc1165f42d1e91723877a";
   };
 
   buildInputs = [emacs];
@@ -16,8 +17,8 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-    homepage = "http://projects.haskell.org/haskellmode-emacs/";
-    description = "Haskell mode package for Emacs";
+    homepage = "http://github.com/haskell/haskell-mode";
+    description = "Haskell mode for Emacs";
 
     platforms = stdenv.lib.platforms.unix;
     maintainers = [ stdenv.lib.maintainers.simons ];