Skip to content

Commit

Permalink
Turns out openssl is a build-time dependency after all.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamirTalwar committed Feb 12, 2024
1 parent dd764ae commit f7773f3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nix/app.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,14 @@ let

strictDeps = true;

buildInputs = [
# build-time inputs
nativeBuildInputs = [
openssl # required for TLS connection to PostgreSQL
pkg-config # required to find OpenSSL
];

# runtime inputs
buildInputs = [
protobuf # required by opentelemetry-proto, a dependency of axum-tracing-opentelemetry
] ++ lib.optionals hostPlatform.isDarwin [
# macOS-specific dependencies
Expand Down

0 comments on commit f7773f3

Please sign in to comment.