3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/lldpd/default.nix

40 lines
1 KiB
Nix
Raw Normal View History

2018-12-17 23:03:56 +00:00
{ stdenv, lib, fetchurl, pkgconfig, removeReferencesTo
, libevent, readline, net_snmp, openssl
}:
2017-05-20 21:45:48 +01:00
stdenv.mkDerivation rec {
name = "lldpd-${version}";
2018-12-17 23:03:56 +00:00
version = "1.0.3";
2017-05-20 21:45:48 +01:00
src = fetchurl {
url = "https://media.luffy.cx/files/lldpd/${name}.tar.gz";
2018-12-17 23:03:56 +00:00
sha256 = "0q63wiaan85a6d204jgk87w6dw5c9x0rb2z7pwb580b8a4wyvz1r";
2017-05-20 21:45:48 +01:00
};
configureFlags = [
"--localstatedir=/var"
"--enable-pie"
"--with-snmp"
"--with-systemdsystemunitdir=\${out}/lib/systemd/system"
2017-05-20 21:45:48 +01:00
];
nativeBuildInputs = [ pkgconfig removeReferencesTo ];
buildInputs = [ libevent readline net_snmp openssl ];
2017-05-20 21:45:48 +01:00
enableParallelBuilding = true;
outputs = [ "out" "dev" "man" "doc" ];
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";
homepage = https://vincentbernat.github.io/lldpd/;
2017-05-20 21:45:48 +01:00
license = licenses.isc;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}