mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
69801692ae
- Remove unused inputs (unzip, ncurses) - Make some buildInputs native - Fix website - Wrap the needed perl libraries using `withPackages` - Make Perl support optional and disable it by default because it didn't work previously because net-snmp is built without its perl modules (the SNMP module to be specific) which the perl tools need
72 lines
2.3 KiB
Nix
72 lines
2.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook, removeReferencesTo
|
|
, file, openssl, perl, perlPackages, nettools, gnused
|
|
, withPerlTools ? false }: let
|
|
|
|
perlWithPkgs = perl.withPackages (ps: with ps; [
|
|
JSON
|
|
TermReadKey
|
|
Tk
|
|
]);
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "net-snmp";
|
|
version = "5.9.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/net-snmp/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-63/UpE3mzdv/2akqha0TCeXBBU+51afdkweciVP0jD8=";
|
|
};
|
|
|
|
patches =
|
|
let fetchAlpinePatch = name: sha256: fetchpatch {
|
|
url = "https://git.alpinelinux.org/aports/plain/main/net-snmp/${name}?id=f25d3fb08341b60b6ccef424399f060dfcf3f1a5";
|
|
inherit name sha256;
|
|
};
|
|
in [
|
|
(fetchAlpinePatch "fix-includes.patch" "0zpkbb6k366qpq4dax5wknwprhwnhighcp402mlm7950d39zfa3m")
|
|
(fetchAlpinePatch "netsnmp-swinst-crash.patch" "0gh164wy6zfiwiszh58fsvr25k0ns14r3099664qykgpmickkqid")
|
|
];
|
|
|
|
outputs = [ "bin" "out" "dev" "lib" ];
|
|
|
|
configureFlags =
|
|
[ "--with-default-snmp-version=3"
|
|
"--with-sys-location=Unknown"
|
|
"--with-sys-contact=root@unknown"
|
|
"--with-logfile=/var/log/net-snmpd.log"
|
|
"--with-persistent-directory=/var/lib/net-snmp"
|
|
"--with-openssl=${openssl.dev}"
|
|
"--disable-embedded-perl"
|
|
"--without-perl-modules"
|
|
] ++ lib.optional stdenv.isLinux "--with-mnttab=/proc/mounts";
|
|
|
|
postPatch = ''
|
|
substituteInPlace testing/fulltests/support/simple_TESTCONF.sh --replace "/bin/netstat" "${nettools}/bin/netstat"
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoreconfHook nettools removeReferencesTo gnused file ];
|
|
buildInputs = [ openssl ]
|
|
++ lib.optional withPerlTools perlWithPkgs;
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = false; # tries to use networking
|
|
|
|
postInstall = ''
|
|
for f in "$lib/lib/"*.la $bin/bin/net-snmp-config $bin/bin/net-snmp-create-v3-user; do
|
|
sed 's|-L${openssl.dev}|-L${openssl.out}|g' -i $f
|
|
done
|
|
mkdir $dev/bin
|
|
mv $bin/bin/net-snmp-config $dev/bin
|
|
# libraries contain configure options
|
|
find $lib/lib -type f -exec remove-references-to -t $bin '{}' +
|
|
find $lib/lib -type f -exec remove-references-to -t $dev '{}' +
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Clients and server for the SNMP network monitoring protocol";
|
|
homepage = "http://www.net-snmp.org/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|