raytracer-rs/shell.nix
2026-03-25 19:29:35 -04:00

8 lines
112 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rust-analyzer
];
}