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

assert stdenv.system == "i686-linux";

stdenv.mkDerivation {
  name = "ghc-6.4.2";
  builder = ./boot.sh;
  src = fetchurl {
    url = http://www.haskell.org/ghc/dist/6.4.2/ghc-6.4.2-i386-unknown-linux.tar.bz2;
    md5 = "092fe2e25dab22b926babe97cc77db1f";
  };
  buildInputs = [perl];
  propagatedBuildInputs = [readline ncurses];
  inherit readline ncurses;
}