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

40 lines
1.0 KiB
Nix
Raw Normal View History

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