68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{
|
|
stdenv,
|
|
Foundation,
|
|
fetchurl,
|
|
lib,
|
|
libevent,
|
|
net-snmp,
|
|
openssl,
|
|
pkg-config,
|
|
readline,
|
|
removeReferencesTo,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lldpd";
|
|
version = "1.0.18";
|
|
|
|
src = fetchurl {
|
|
url = "https://media.luffy.cx/files/lldpd/${pname}-${version}.tar.gz";
|
|
hash = "sha256-SzIGddYIkBpKDU/v+PlruEbUkT2RSwz3W30K6ASQ8vc=";
|
|
};
|
|
|
|
configureFlags =
|
|
[
|
|
"--localstatedir=/var"
|
|
"--enable-pie"
|
|
"--with-snmp"
|
|
"--with-systemdsystemunitdir=\${out}/lib/systemd/system"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"--with-launchddaemonsdir=no"
|
|
"--with-privsep-chroot=/var/empty"
|
|
"--with-privsep-group=nogroup"
|
|
"--with-privsep-user=nobody"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
removeReferencesTo
|
|
];
|
|
buildInputs = [
|
|
libevent
|
|
readline
|
|
net-snmp
|
|
openssl
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Foundation ];
|
|
|
|
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://lldpd.github.io/";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|