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

assert perl != null;

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

stdenv.mkDerivation {
  name = "ghc-6.2.1";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/ghc-6.2.1-i386-unknown-linux.tar.bz2;
    md5 = "48d9d6b9f7bf1f15d69e8bd732ee254c";
  };
  buildInputs = [perl];
}