2010-06-12 22:54:35 +02:00
|
|
|
{stdenv, fetchurl, gcc, flex, perl, libtool, groff}:
|
2008-03-17 12:18:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-06-12 19:42:33 +02:00
|
|
|
name = "llvm-2.7";
|
2008-03-17 12:18:21 +01:00
|
|
|
src = fetchurl {
|
2010-06-12 19:42:33 +02:00
|
|
|
url = http://llvm.org/releases/2.7/llvm-2.7.tgz;
|
|
|
|
sha256 = "19dwvfyxr851fjfsaxbm56gdj9mlivr37bv6h41hd8q3hpf4nrlr";
|
2008-03-17 12:18:21 +01:00
|
|
|
};
|
|
|
|
|
2010-06-12 19:42:33 +02:00
|
|
|
buildInputs = [ gcc flex perl libtool groff ];
|
2010-06-12 22:54:35 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://llvm.org/;
|
|
|
|
description = "Collection of modular and reusable compiler and toolchain technologies";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
|
|
|
};
|
2008-03-17 12:18:21 +01:00
|
|
|
}
|