depot/pkgs/tools/networking/lldpd/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

53 lines
1.3 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;
};
}