Removed some of the buildInputs for the LLVM nix-expression that are not required.
svn path=/nixpkgs/trunk/; revision=11157
This commit is contained in:
parent
c65d00efeb
commit
33cd1691a6
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, gcc, texinfo, flex, bison, perl, gnum4, autoconf, automake, libtool }:
|
||||
{stdenv, fetchurl, gcc, flex, perl, libtool }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "llvm-2.2";
|
||||
|
@ -7,6 +7,5 @@ stdenv.mkDerivation {
|
|||
sha256 = "788d871aec139e0c61d49533d0252b21c4cd030e91405491ee8cb9b2d0311072";
|
||||
};
|
||||
|
||||
# buildInputs = [ gcc texinfo flex bison perl gnum4 autoconf automake libtool ];
|
||||
buildInputs = [ gcc flex perl libtool ];
|
||||
}
|
||||
|
|
|
@ -1490,7 +1490,7 @@ rec {
|
|||
};
|
||||
|
||||
llvm = import ../development/compilers/llvm {
|
||||
inherit fetchurl stdenv gcc texinfo flex bison perl gnum4 autoconf automake libtool;
|
||||
inherit fetchurl stdenv gcc flex perl libtool;
|
||||
};
|
||||
|
||||
mono = import ../development/compilers/mono {
|
||||
|
|
Loading…
Reference in New Issue