Valgrind: Remove unnecessary dependency on Autoconf and Automake.

svn path=/nixpkgs/trunk/; revision=29656
This commit is contained in:
Ludovic Courtès 2011-10-05 10:52:11 +00:00
parent ba677f861f
commit 631c013a13
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, perl, gdb, autoconf, automake }:
{ stdenv, fetchurl, perl, gdb }:
stdenv.mkDerivation (rec {
name = "valgrind-3.6.1";
@ -10,7 +10,7 @@ stdenv.mkDerivation (rec {
# Perl is needed for `cg_annotate'.
# GDB is needed to provide a sane default for `--db-command'.
buildNativeInputs = [ perl autoconf automake ];
buildNativeInputs = [ perl ];
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) gdb;
configureFlags =