39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl, file, openssl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "net-snmp-5.7.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/net-snmp/${name}.tar.gz";
|
|
sha256 = "05mqrv22c65405d6v91cqf4hvczkkvvyy5lsxw8h8g0zrjs33v89";
|
|
};
|
|
|
|
preConfigure =
|
|
''
|
|
perlversion=$(perl -e 'use Config; print $Config{version};')
|
|
perlarchname=$(perl -e 'use Config; print $Config{archname};')
|
|
installFlags="INSTALLSITEARCH=$out/lib/perl5/site_perl/$perlversion/$perlarchname INSTALLSITEMAN3DIR=$out/share/man/man3"
|
|
|
|
# http://comments.gmane.org/gmane.network.net-snmp.user/32434
|
|
substituteInPlace "man/Makefile.in" --replace 'grep -vE' '@EGREP@ -v'
|
|
'';
|
|
|
|
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"
|
|
];
|
|
|
|
buildInputs = [ file openssl perl ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Clients and server for the SNMP network monitoring protocol";
|
|
homepage = http://net-snmp.sourceforge.net/;
|
|
license = "bsd";
|
|
};
|
|
}
|