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