summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/6.4.2.nix
blob: e336d4e83b1b16f3d3049efc38fc550edc12ef08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{stdenv, fetchurl, perl, ghc, m4, readline, ncurses, gmp}:

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 gmp];

  configureFlags = "--with-gcc=${stdenv.gcc}/bin/gcc";

  preConfigure =
    ''
      # Don't you hate build processes that write in $HOME? :-(
      export HOME=$(pwd)/fake-home
      mkdir -p $HOME
    '';

  meta = {
    description = "The Glasgow Haskell Compiler";
    inherit (ghc.meta) license platforms;
  };
}