dotfiles/.config/nixshell/rust.nix
2023-10-29 14:51:29 +01:00

17 lines
267 B
Nix

let
pkgs = import <nixpkgs> {};
unstable = import <unstable> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
unstable.rustc
cargo
libressl
rustfmt
mdbook
];
nativeBuildInputs = with pkgs; [
pkg-config
];
}