advent-of-code-2024/shell.nix
2024-12-01 14:59:23 +01:00

14 lines
201 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = with pkgs; [
rustc
cargo
clippy
rustfmt
rust-analyzer
];
RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}";
}