Author: shlevy
Date: Sat Dec  3 23:47:59 2011
New Revision: 30722
URL: https://nixos.org/websvn/nix/?rev=30722&sc=1

Log:
llvm 3.0

This probably breaks clang. I will be updating clang to 3.0 when I can

Modified:
   nixpkgs/trunk/pkgs/development/compilers/llvm/default.nix

Modified: nixpkgs/trunk/pkgs/development/compilers/llvm/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/compilers/llvm/default.nix   Sat Dec  3 
22:23:57 2011        (r30721)
+++ nixpkgs/trunk/pkgs/development/compilers/llvm/default.nix   Sat Dec  3 
23:47:59 2011        (r30722)
@@ -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 @@
       "CXX=clang++"
     ];
 
+  enableParallelBuilding = true;
+
   meta = {
     homepage = http://llvm.org/;
     description = "Collection of modular and reusable compiler and toolchain 
technologies";
_______________________________________________
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to