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

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

derivation {
  name = "ghc-6.2";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.haskell.org/ghc/dist/6.2/ghc-6.2-src.tar.bz2;
    md5 = "cc495e263f4384e1d6b38e851bf6eca0";
  };
  inherit stdenv perl ghc m4;
}