summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/boot.nix
blob: 54b32ece93882cedfd7516a25a984cf349bd76ff (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.1";
  builder = ./boot.sh;
  src = fetchurl {
    url = http://www.haskell.org/ghc/dist/6.4.1/ghc-6.4.1-i386-unknown-linux.tar.bz2;
    md5 = "9cd18a8e946da91b373b8ec855cd842e";
  };
  buildInputs = [perl];
  propagatedBuildInputs = [readline ncurses];
  inherit readline ncurses;
}