dotfiles/.config/nixshell/rust.nix
2023-05-07 15:58:57 +02:00

16 lines
254 B
Nix

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