net-snmp: remove autoreconfHook

Usually we can use the configure scripts included in the release tarball. This
was added in 552143224a8c0475b116d185a3b67d4cf5e0dfcd almost 10 years ago to
fix the build, but is no longer necessary.

Yureka 105ba21e 0bffda19

+2 -2
+2 -2
pkgs/servers/monitoring/net-snmp/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, autoreconfHook, removeReferencesTo 1 + { lib, stdenv, fetchurl, fetchpatch, removeReferencesTo 2 2 , file, openssl, perl, perlPackages, nettools 3 3 , withPerlTools ? false }: let 4 4 ··· 44 44 substituteInPlace testing/fulltests/support/simple_TESTCONF.sh --replace "/bin/netstat" "${nettools}/bin/netstat" 45 45 ''; 46 46 47 - nativeBuildInputs = [ autoreconfHook nettools removeReferencesTo file ]; 47 + nativeBuildInputs = [ nettools removeReferencesTo file ]; 48 48 buildInputs = [ openssl ] 49 49 ++ lib.optional withPerlTools perlWithPkgs; 50 50