nix develop works

This commit is contained in:
Aaron Honeycutt 2025-04-17 12:57:41 -06:00
parent fb3e99f8e4
commit daa701753d

View file

@ -28,7 +28,10 @@
# For `nix develop` (optional, can be skipped): # For `nix develop` (optional, can be skipped):
devShell = pkgs.mkShell { 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 ];
}; };
} }
); );