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 =
pkgs.mkShellNoCC {
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [ pkgs.bashInteractive ];
packages = with pkgs; [
rustc
@ -28,6 +29,7 @@
];
})
];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
'';