From 28d01acf91a700d5f53068571ab8a86d32137b56 Mon Sep 17 00:00:00 2001 From: t4min0 <269137166+t4min0@users.noreply.github.com> Date: Fri, 3 Apr 2026 00:10:54 +0200 Subject: [PATCH] fix(nix): add perl to buildInputs for openssl-sys vendored build Since v0.5.4, native-tls uses features = ["vendored"], which compiles OpenSSL from source via openssl-sys. This requires perl for the OpenSSL Configure script, but perl was missing from the flake's buildInputs. Mirrors the Dockerfile fix in #952. Fixes #894. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index f172a0a0..999cc5c6 100644 --- a/flake.nix +++ b/flake.nix @@ -25,6 +25,7 @@ rust-project.defaults.perCrate.crane.args.buildInputs = with pkgs; [ clang openssl + perl pkg-config ]; rust-project.crates.openfang-desktop.crane.args.buildInputs = with pkgs; [