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

8 lines
132 B
Nix
Raw Normal View History

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