{ pkgs ? import ../. {} }: with pkgs; stdenv.mkDerivation { name = "rust-shell"; buildInputs = [ cargo cargo-deny cargo-edit clang clippy llvm pkg-config rust-analyzer rustc rustfmt ]; buildCommand = '' printf "%s\n" $buildInputs > $out ''; # For bindgen LIBCLANG_PATH = "${llvmPackages.libclang}/lib"; }