From 46ad816c4c055c5370ee694d3f883f5526b91833 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Sat, 27 Jun 2026 11:54:31 +0200 Subject: [PATCH] fix(flake): add openssl to buildInputs for Rust packages (#10) Garnix CI was failing because openssl-sys couldn't find the OpenSSL library. Added pkgs.openssl to buildInputs for both archivr_cli_unwrapped and archivr_server_unwrapped to provide the necessary system dependency and allow pkg-config to locate openssl.pc. --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 3ab5b52..c87369b 100644 --- a/flake.nix +++ b/flake.nix @@ -73,6 +73,7 @@ cargoLock nativeBuildInputs ; + buildInputs = [ pkgs.openssl ]; cargoBuildFlags = [ "-p" "archivr-cli" @@ -90,6 +91,7 @@ cargoLock nativeBuildInputs ; + buildInputs = [ pkgs.openssl ]; cargoBuildFlags = [ "-p" "archivr-server"