mirror of
https://github.com/thegeneralist01/archivr
synced 2026-07-22 03:05:32 +02:00
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.
This commit is contained in:
parent
91e73d85e7
commit
46ad816c4c
1 changed files with 2 additions and 0 deletions
|
|
@ -73,6 +73,7 @@
|
||||||
cargoLock
|
cargoLock
|
||||||
nativeBuildInputs
|
nativeBuildInputs
|
||||||
;
|
;
|
||||||
|
buildInputs = [ pkgs.openssl ];
|
||||||
cargoBuildFlags = [
|
cargoBuildFlags = [
|
||||||
"-p"
|
"-p"
|
||||||
"archivr-cli"
|
"archivr-cli"
|
||||||
|
|
@ -90,6 +91,7 @@
|
||||||
cargoLock
|
cargoLock
|
||||||
nativeBuildInputs
|
nativeBuildInputs
|
||||||
;
|
;
|
||||||
|
buildInputs = [ pkgs.openssl ];
|
||||||
cargoBuildFlags = [
|
cargoBuildFlags = [
|
||||||
"-p"
|
"-p"
|
||||||
"archivr-server"
|
"archivr-server"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue