net-snmp: remove autoreconfHook

Usually we can use the configure scripts included in the release tarball. This
was added in 552143224a almost 10 years ago to
fix the build, but is no longer necessary.
This commit is contained in:
Yureka
2023-09-06 10:42:31 +02:00
parent 0bffda19b8
commit 105ba21e08
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook, removeReferencesTo
{ lib, stdenv, fetchurl, fetchpatch, removeReferencesTo
, file, openssl, perl, perlPackages, nettools
, withPerlTools ? false }: let
@@ -44,7 +44,7 @@ in stdenv.mkDerivation rec {
substituteInPlace testing/fulltests/support/simple_TESTCONF.sh --replace "/bin/netstat" "${nettools}/bin/netstat"
'';
nativeBuildInputs = [ autoreconfHook nettools removeReferencesTo file ];
nativeBuildInputs = [ nettools removeReferencesTo file ];
buildInputs = [ openssl ]
++ lib.optional withPerlTools perlWithPkgs;