mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-24 16:33:10 +00:00
git-subtree-dir: third-party/nwaku git-subtree-split: d94cb7c73631ffd4b934839ba58bc622d331a135
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;
|
|
}
|