up/shell.nix
2024-12-22 18:47:11 -08:00

9 lines
120 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustc
cargo
iconv
];
}