Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

lldpd: fix build

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

+3 -2
+3 -2
pkgs/tools/networking/lldpd/default.nix
··· 1 1 { stdenv, lib, fetchurl, pkgconfig, removeReferencesTo 2 - , libevent, readline, net_snmp }: 2 + , libevent, readline, net_snmp, openssl 3 + }: 3 4 4 5 stdenv.mkDerivation rec { 5 6 name = "lldpd-${version}"; ··· 18 19 ]; 19 20 20 21 nativeBuildInputs = [ pkgconfig removeReferencesTo ]; 21 - buildInputs = [ libevent readline net_snmp ]; 22 + buildInputs = [ libevent readline net_snmp openssl ]; 22 23 23 24 enableParallelBuilding = true; 24 25