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:
parent
72478f1c8e
commit
552143224a
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue