summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/default.nix
blob: 0aeb8086a1d3b72418c1080d3d75ef1b8dc096f0 (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, gmp}:

stdenv.mkDerivation {
  name = "ghc-6.4.2";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/ghc-6.4.2-src.tar.bz2;
    md5 = "a394bf14e94c3bca5507d568fcc03375";
  };
  buildInputs = [perl ghc m4];
  propagatedBuildInputs = [readline ncurses gmp];
  builder = ./builder.sh;
  inherit gcc;

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