Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
72 lines
1.5 KiB
Nix
72 lines
1.5 KiB
Nix
{
|
|
stdenv,
|
|
fetchurl,
|
|
lib,
|
|
libevent,
|
|
net-snmp,
|
|
openssl,
|
|
pkg-config,
|
|
readline,
|
|
removeReferencesTo,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lldpd";
|
|
version = "1.0.20";
|
|
|
|
src = fetchurl {
|
|
url = "https://media.luffy.cx/files/lldpd/${pname}-${version}.tar.gz";
|
|
hash = "sha256-YbjLItSHnmj3glovuOHpKrtKukdzl3zwJYvDLtn1VFA=";
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
preConfigure = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
|
# Yes, this works and is required for cross :'/
|
|
export PATH=$PATH:${net-snmp.dev}/bin
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|