mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-04-15 12:43:07 +00:00
Co-authored-by: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com> Co-authored-by: Darshan K <35736874+darshankabariya@users.noreply.github.com>
21 lines
293 B
Nix
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
|
|
];
|
|
}
|