2017-05-27 00:53:18 +01:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, removeReferencesTo
|
2017-05-20 21:45:48 +01:00
|
|
|
, libevent, readline, net_snmp }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lldpd-${version}";
|
|
|
|
version = "0.9.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://media.luffy.cx/files/lldpd/${name}.tar.gz";
|
|
|
|
sha256 = "1f0d5s4643pjmgycc5ssgl1pggyq5a7navhabkyhcg0aqdah6dmr";
|
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--enable-pie"
|
|
|
|
"--with-snmp"
|
|
|
|
];
|
|
|
|
|
2017-05-27 00:53:18 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig removeReferencesTo ];
|
2017-05-20 21:45:48 +01:00
|
|
|
buildInputs = [ libevent readline net_snmp ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
|
|
|
|
2017-05-27 00:53:18 +01:00
|
|
|
preFixup = ''
|
|
|
|
find $out -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
|
|
|
|
'';
|
|
|
|
|
2017-05-20 21:45:48 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "802.1ab implementation (LLDP) to help you locate neighbors of all your equipments";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://vincentbernat.github.io/lldpd/;
|
2017-05-20 21:45:48 +01:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|