From 0fd24e1c3abac2dec52c8d94f6f20e6009c26402 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Wed, 2 Apr 2025 14:25:41 -0500 Subject: [PATCH] attempt fix openssl build error --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 7f6e98f..c85b43b 100644 --- a/flake.nix +++ b/flake.nix @@ -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} '';