wttrbar: Add OpenSSL dependency

wttrbar requires OpenSSL through the following dependency chain:
hyper-tls → native-tls (→ openssl) → openssl-sys.
This commit is contained in:
Mikael Voss
2025-08-02 15:29:47 +02:00
parent de20ed5e40
commit ce7f9692fa
+5
View File
@@ -2,6 +2,8 @@
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
openssl,
nix-update-script,
}:
@@ -18,6 +20,9 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-WMRDUAefYjXY03EqTZf3VNJuypxu07RTyDmdlB6a0kk=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
passthru.updateScript = nix-update-script { };
meta = {