mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ stdenv, fetchurl, autoreconfHook, file, openssl, perl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "net-snmp-5.7.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/net-snmp/${name}.zip";
|
|
sha256 = "0gkss3zclm23zwpqfhddca8278id7pk6qx1mydpimdrrcndwgpz8";
|
|
};
|
|
|
|
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 = [ autoreconfHook file perl unzip ];
|
|
propagatedBuildInputs = [ openssl ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Clients and server for the SNMP network monitoring protocol";
|
|
homepage = http://net-snmp.sourceforge.net/;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|