From f8f9f3b1ccafc5778bd0fbdd746ba04d55f62fa2 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sat, 4 May 2013 18:05:45 -0400 Subject: [PATCH] binutils_gold: Don't require unneded dependencies. Based on my scan of the logs they weren't even used when enabled Signed-off-by: Shea Levy --- pkgs/development/tools/misc/binutils/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index c3f9de4bc89..e1afceebaa2 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ] - ++ stdenv.lib.optional gold [dejagnu flex2535 bison /* Some Gold tests require this: */ bc]; + ++ stdenv.lib.optional gold bison; inherit noSysDirs;