summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/default.nix
blob: 44a8dcbc03d940f1b6251eff85996032c7a8216b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, gcc, fetchurl, perl, ghc, m4, readline, ncurses}:

stdenv.mkDerivation {
  name = "ghc-6.4.2";
  src = fetchurl {
    url = http://www.haskell.org/ghc/dist/6.4.2/ghc-6.4.2-src.tar.bz2;
    md5 = "a394bf14e94c3bca5507d568fcc03375";
  };
  buildInputs = [perl ghc m4];
  propagatedBuildInputs = [readline ncurses];
  builder = ./builder.sh;
  inherit gcc;

  meta = {
    description = "The Glasgow Haskell Compiler";
  };
}