net_snmp: fix build by autoreconfing

This commit is contained in:
Vladimír Čunát 2014-01-05 11:19:07 +01:00
parent 72478f1c8e
commit 552143224a
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, file, openssl, perl }:
{ stdenv, fetchurl, autoreconfHook, file, openssl, perl }:
stdenv.mkDerivation rec {
name = "net-snmp-5.7.2";
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
"--with-persistent-directory=/var/lib/net-snmp"
];
buildInputs = [ file openssl perl ];
buildInputs = [ autoreconfHook file openssl perl ];
enableParallelBuilding = true;