attempt fix openssl build error

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-02 14:25:41 -05:00
parent 5b95635674
commit 0fd24e1c3a

View File

@ -10,6 +10,7 @@
{ {
devShells."${system}".default = devShells."${system}".default =
pkgs.mkShellNoCC { pkgs.mkShellNoCC {
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [ pkgs.bashInteractive ]; buildInputs = [ pkgs.bashInteractive ];
packages = with pkgs; [ packages = with pkgs; [
rustc rustc
@ -28,6 +29,7 @@
]; ];
}) })
]; ];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
shellHook = '' shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive} export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
''; '';