8 lines
132 B
Nix
8 lines
132 B
Nix
![]() |
{ mkShell, rust-app, rust-bin }:
|
||
|
mkShell {
|
||
|
inputsFrom = [ rust-app ];
|
||
|
buildInputs = [
|
||
|
rust-bin.stable.latest.default
|
||
|
];
|
||
|
}
|