dotfiles/.config/nixshell/rust.nix
2023-04-08 16:59:16 +02:00

15 lines
240 B
Nix

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