1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

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

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;