From f267b9ac783669c9b96b246da1ae643f2d1109f1 Mon Sep 17 00:00:00 2001 From: Josh Robson Chase Date: Mon, 14 Oct 2024 15:48:05 -0400 Subject: [PATCH] add openssl to LD_LIBRARY_PATH for doc tests --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 3a8f85d..0a27bed 100644 --- a/flake.nix +++ b/flake.nix @@ -23,6 +23,7 @@ inputs.fenix.overlays.default ]; }; + lib = nixpkgs.lib; toolchain = pkgs.fenix.complete.withComponents [ "cargo" "clippy" @@ -61,6 +62,7 @@ cargo-udeps ]; RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}"; + LD_LIBRARY_PATH = lib.makeLibraryPath [ pkgs.openssl ]; }; } );