mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-31 20:23:05 +00:00
Newer nixpkgs should have Android SDK for aarch64. Signed-off-by: Jakub Sokołowski <jakub@status.im>
20 lines
292 B
Nix
20 lines
292 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-unwrapped-2_2
|
|
];
|
|
}
|