From daa701753d8f0648b359b18e584968d367e91559 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 17 Apr 2025 12:57:41 -0600 Subject: [PATCH] nix develop works --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c4579d1..c6b4877 100644 --- a/flake.nix +++ b/flake.nix @@ -28,7 +28,10 @@ # For `nix develop` (optional, can be skipped): devShell = pkgs.mkShell { - nativeBuildInputs = with pkgs; [ rustc cargo ]; + LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; + CLANG_PATH = "${pkgs.llvmPackages.clang}/bin/clang"; + buildInputs = with pkgs; [ pkg-config openssl ]; + nativeBuildInputs = with pkgs; [ rustc cargo util-linux.dev ]; }; } );