fluffle/shell.nix
2025-03-15 23:05:46 -07:00

11 lines
102 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
with pkgs;
mkShell {
buildInputs = [
rustc
cargo
];
}