about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/default.nix
blob: 84cf70221541da02d08b22504a26b53ea0e0e787 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, gcc, texinfo, flex, bison, perl, gnum4, autoconf, automake, libtool }:

stdenv.mkDerivation {
  name = "llvm-2.2";
  src = fetchurl {
    url    = http://llvm.org/releases/2.2/llvm-2.2.tar.gz;
    sha256 = "788d871aec139e0c61d49533d0252b21c4cd030e91405491ee8cb9b2d0311072";
  };

  # buildInputs = [ gcc texinfo flex bison perl gnum4 autoconf automake libtool ];
  buildInputs = [ gcc flex perl libtool ];
}