mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-11 02:13:11 +00:00
It includes also androidndk and files needed for nimbus-build-system Referenced issue: https://github.com/waku-org/nwaku/issues/3232 Signed-off-by: markoburcul <marko@status.im>
15 lines
315 B
Nix
15 lines
315 B
Nix
#
|
|
# This Nix expression centralizes the configuration
|
|
# for the Android development environment.
|
|
#
|
|
|
|
{ callPackage }:
|
|
|
|
let
|
|
compose = callPackage ./compose.nix { };
|
|
pkgs = callPackage ./pkgs.nix { inherit compose; };
|
|
shell = callPackage ./shell.nix { androidPkgs = pkgs; };
|
|
in {
|
|
inherit compose pkgs shell;
|
|
}
|