mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
llvm 3.0
This probably breaks clang. I will be updating clang to 3.0 when I can svn path=/nixpkgs/trunk/; revision=30722
This commit is contained in:
parent
766396a57b
commit
332afc59aa
1 changed files with 5 additions and 3 deletions
|
@ -1,13 +1,13 @@
|
|||
{ stdenv, fetchurl, perl, groff, darwinSwVersUtility }:
|
||||
|
||||
let version = "2.9"; in
|
||||
let version = "3.0"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "llvm-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://llvm.org/releases/${version}/llvm-${version}.tgz";
|
||||
sha256 = "0y9pgdakn3n0vf8zs6fjxjw6972nyw4rkfwwza6b8a3ll77kc4k6";
|
||||
url = "http://llvm.org/releases/${version}/llvm-${version}.tar.gz";
|
||||
sha256 = "0xq4gi7lflv8ilfckslhfvnja5693xjii1yvzz39kklr6hfv37ji";
|
||||
};
|
||||
|
||||
buildInputs = [ perl groff ] ++
|
||||
|
@ -19,6 +19,8 @@ stdenv.mkDerivation {
|
|||
"CXX=clang++"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://llvm.org/;
|
||||
description = "Collection of modular and reusable compiler and toolchain technologies";
|
||||
|
|
Loading…
Reference in a new issue