From 105ba21e080b6ef920c99add8077ea55071e9487 Mon Sep 17 00:00:00 2001 From: Yureka Date: Tue, 5 Sep 2023 19:15:02 +0200 Subject: [PATCH] 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. --- pkgs/servers/monitoring/net-snmp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index 2a49eda4530f..b7d59e007927 100644 --- a/pkgs/servers/monitoring/net-snmp/default.nix +++ b/pkgs/servers/monitoring/net-snmp/default.nix @@ -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;