summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/modes/haskell/default.nix
blob: c75c1caf133c81fbea90e15e0683822168d5599b (plain) (blame)
1
2
3
4
5
6
7
8
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "haskell-mode-1.45";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/haskell-mode-1.45.tar.gz;
    md5 = "c609998580cdb9ca8888c7d47d22ca3b";
  };
}