about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/modes/haskell/default.nix
blob: 33a29ae7ddef09a3ef968f965ee1181bdefd5868 (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://www.haskell.org/haskell-mode/haskell-mode-1.45.tar.gz;
    md5 = "c609998580cdb9ca8888c7d47d22ca3b";
  };
}