aa21b4b3d3
The build missed `openssl` as input and failed with an error like this: ``` /nix/store/7n1h80xkbjhcijzp0iylk0nc7w05vy8k-net-snmp-5.8/include/net-snmp/library/scapi.h:14:10: fatal error: openssl/ossl_typ.h: No such file or directory #include <openssl/ossl_typ.h> /* EVP_MD */ ^~~~~~~~~~~~~~~~~~~~ compilation terminated. ``` This also unbreaks `osquery` (https://hydra.nixos.org/build/88547811). See also https://hydra.nixos.org/build/88562937
40 lines
1.0 KiB
Nix
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.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://media.luffy.cx/files/lldpd/${name}.tar.gz";
|
|
sha256 = "0q63wiaan85a6d204jgk87w6dw5c9x0rb2z7pwb580b8a4wyvz1r";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|