nixpkgs/pkgs/tools/networking/lldpd/default.nix

40 lines
1 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ stdenv, lib, fetchurl, pkg-config, removeReferencesTo
2019-12-21 22:44:50 +00:00
, libevent, readline, net-snmp, openssl
}:
2017-05-20 20:45:48 +00:00
stdenv.mkDerivation rec {
pname = "lldpd";
2021-01-20 02:07:05 +00:00
version = "1.0.8";
2017-05-20 20:45:48 +00:00
src = fetchurl {
url = "https://media.luffy.cx/files/lldpd/${pname}-${version}.tar.gz";
2021-01-20 02:07:05 +00:00
sha256 = "sha256-mNIA524w9iYsSkSTFIwYQIJ4mDKRRqV6NPjw+SjKPe8=";
2017-05-20 20:45:48 +00:00
};
configureFlags = [
"--localstatedir=/var"
"--enable-pie"
"--with-snmp"
"--with-systemdsystemunitdir=\${out}/lib/systemd/system"
2017-05-20 20:45:48 +00:00
];
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config removeReferencesTo ];
2019-12-21 22:44:50 +00:00
buildInputs = [ libevent readline net-snmp openssl ];
2017-05-20 20:45:48 +00:00
enableParallelBuilding = true;
outputs = [ "out" "dev" "man" "doc" ];
preFixup = ''
find $out -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
'';
2017-05-20 20:45:48 +00: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 20:45:48 +00:00
license = licenses.isc;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}