flake-template-hell/templates/rust/nix/shell.nix

9 lines
156 B
Nix
Raw Normal View History

2024-08-14 23:44:43 +01:00
{ mkShell, rust-app, rust-bin }:
mkShell {
name = "Rust Rivers";
2024-08-14 23:44:43 +01:00
inputsFrom = [ rust-app ];
buildInputs = [
rust-bin.stable.latest.default
];
}