nixos-config/shells/rust.nix
2022-07-16 17:24:38 +08:00

28 lines
494 B
Nix

# This is just for a quick development setup. Otherwise, I recommend
# to use the `rust` template from `nixpkgs` or whatever you prefer.
{ mkShell
, openssl
, pkgconfig
, cargo
, rustc
, rustfmt
, rust-analyzer
, rustPackages
, rustPlatform
}:
mkShell {
buildInputs = [
openssl # In case some package needs it.
pkgconfig # In case some other package needs it.
# Rust platform.
cargo
rustc
rustfmt
rust-analyzer
];
RUST_SRC_PATH = rustPlatform.rustLibSrc;
}