nixpkgs/pkgs/tools/networking/lldpd/default.nix
R. RyanTM 2564dac828 lldpd: 1.0.3 -> 1.0.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lldpd/versions
2019-07-02 20:05:13 +02:00

40 lines
1.0 KiB
Nix

{ stdenv, lib, fetchurl, pkgconfig, removeReferencesTo
, libevent, readline, net_snmp, openssl
}:
stdenv.mkDerivation rec {
name = "lldpd-${version}";
version = "1.0.4";
src = fetchurl {
url = "https://media.luffy.cx/files/lldpd/${name}.tar.gz";
sha256 = "0kvj49y6slnldi9dha81nzxvpwd7d8kq1qlibn6h1wdb5w1vq6ak";
};
configureFlags = [
"--localstatedir=/var"
"--enable-pie"
"--with-snmp"
"--with-systemdsystemunitdir=\${out}/lib/systemd/system"
];
nativeBuildInputs = [ pkgconfig removeReferencesTo ];
buildInputs = [ libevent readline net_snmp openssl ];
enableParallelBuilding = true;
outputs = [ "out" "dev" "man" "doc" ];
preFixup = ''
find $out -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
'';
meta = with lib; {
description = "802.1ab implementation (LLDP) to help you locate neighbors of all your equipments";
homepage = https://vincentbernat.github.io/lldpd/;
license = licenses.isc;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}