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

assert perl != null && ghc != null && m4 != null;

stdenv.mkDerivation {
  name = "ghc-6.2.1";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/ghc-6.2.1-src.tar.bz2;
    md5 = "fa9f90fd6b8852679c5fc16509e94d7a";
  };
  buildInputs = [perl ghc m4];
}