about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/3.1/default.nix
blob: 60837d58b2958b0e753c47b28878113d7daf1189 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, perl, groff, cmake, python, binutils }:

let version = "3.1"; in

stdenv.mkDerivation {
  name = "llvm-${version}";

  src = fetchurl {
    url    = "http://llvm.org/releases/${version}/llvm-${version}.src.tar.gz";
    sha256 = "1ea05135197b5400c1f88d00ff280d775ce778f8f9ea042e25a1e1e734a4b9ab";
  };

  buildInputs = [ perl groff cmake python ];

  cmakeFlags = [
    "-DCMAKE_BUILD_TYPE=Release"
    "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
  ];

  enableParallelBuilding = true;

  meta = {
    homepage = http://llvm.org/;
    description = "Collection of modular and reusable compiler and toolchain technologies";
    license = "BSD";
    maintainers = with stdenv.lib.maintainers; [viric raskin vlstill];
    platforms = with stdenv.lib.platforms; all;
  };
}