hyena/shell.nix
2024-03-26 14:25:41 +11:00

7 lines
88 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
];
}