LLVM compiler

Low Level Virtual Machine
http://www.llvm.org/

svn path=/nixpkgs/trunk/; revision=11156
This commit is contained in:
Arie Middelkoop
2008-03-17 11:18:21 +00:00
parent 3ee0b9bb74
commit c65d00efeb
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,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 ];
}