logos-delivery/nix/shell.nix
Igor Sirotin 307519076a
nix: drop unnecessay asert for Android SDK on macOS
Newer nixpkgs should have Android SDK for aarch64.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2026-02-06 18:28:22 +00:00

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
];
}