summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/haskell
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-12-19 13:57:02 -0600
committerJohn Wiegley <johnw@newartisans.com>2014-12-19 13:57:02 -0600
commitf6c491891f0681fc4d1c1ba10415a4dcb89a10f5 (patch)
tree47a1ef60df700f7ec801396281a75d11e70c2ec1 /pkgs/applications/editors/emacs-modes/haskell
parentfe5ec0f58d3c10c8afd7361dbd8da59a7dad0138 (diff)
downloadnixlib-f6c491891f0681fc4d1c1ba10415a4dcb89a10f5.tar
nixlib-f6c491891f0681fc4d1c1ba10415a4dcb89a10f5.tar.gz
nixlib-f6c491891f0681fc4d1c1ba10415a4dcb89a10f5.tar.bz2
nixlib-f6c491891f0681fc4d1c1ba10415a4dcb89a10f5.tar.lz
nixlib-f6c491891f0681fc4d1c1ba10415a4dcb89a10f5.tar.xz
nixlib-f6c491891f0681fc4d1c1ba10415a4dcb89a10f5.tar.zst
nixlib-f6c491891f0681fc4d1c1ba10415a4dcb89a10f5.zip
emacsPackages.haskellMode: regress to 13.10 until next release
Diffstat (limited to 'pkgs/applications/editors/emacs-modes/haskell')
-rw-r--r--pkgs/applications/editors/emacs-modes/haskell/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/applications/editors/emacs-modes/haskell/default.nix b/pkgs/applications/editors/emacs-modes/haskell/default.nix
index b7ddb508b000..3f4b93dc6381 100644
--- a/pkgs/applications/editors/emacs-modes/haskell/default.nix
+++ b/pkgs/applications/editors/emacs-modes/haskell/default.nix
@@ -1,13 +1,11 @@
-{ stdenv, fetchFromGitHub, emacs, texinfo }:
+{ stdenv, fetchurl, emacs, texinfo }:
 
 stdenv.mkDerivation rec {
-  name = "haskell-mode-20141113";
+  name = "haskell-mode-13.10";
 
-  src = fetchFromGitHub {
-    owner = "haskell";    
-    repo = "haskell-mode";
-    rev = "fa6468ed36166799439ffea454dddf85335bb424";
-    sha256 = "12qvlcbil25fs1amndpy03pfqlsbidav9rd1fc79whqxrgylxxnz";
+  src = fetchurl {
+    url = "https://github.com/haskell/haskell-mode/archive/v13.10.tar.gz";
+    sha256 = "0hcg7wpalcdw8j36m8vd854zrrgym074r7m903rpwfrhx9mlg02b";
   };
 
   buildInputs = [ emacs texinfo ];