mirror of
https://github.com/logos-messaging/nim-sds.git
synced 2026-01-02 06:03:06 +00:00
For some unknown reason the builds would fail with: /bin/sh: line 1: clang: command not found Unless we added Android NDK toolchains/llvm/prebuilt to PATH. Signed-off-by: Jakub Sokołowski <jakub@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;
|
|
}
|