logos-delivery/nix/shell.nix
Ivan FB f5762af4c4
Start using nimble and deprecate vendor dependencies (#3798)
Co-authored-by: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com>
Co-authored-by: Darshan K <35736874+darshankabariya@users.noreply.github.com>
2026-04-08 12:42:14 +02:00

21 lines
293 B
Nix

{ pkgs }:
pkgs.mkShell {
inputsFrom = [
pkgs.androidShell
] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [
pkgs.libiconv
pkgs.darwin.apple_sdk.frameworks.Security
];
buildInputs = with pkgs; [
git
cargo
rustup
rustc
cmake
nim-2_2
nimble
];
}