9 lines
120 B
Nix
9 lines
120 B
Nix
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
rustc
|
|
cargo
|
|
iconv
|
|
];
|
|
}
|
|
|