2020-04-22 17:05:18 +00:00
|
|
|
#
|
|
|
|
# This Nix expression centralizes the configuration
|
|
|
|
# for the Android development environment.
|
|
|
|
#
|
|
|
|
|
2022-05-26 09:11:34 +00:00
|
|
|
{ callPackage }:
|
2020-04-22 17:05:18 +00:00
|
|
|
|
|
|
|
let
|
2020-08-27 12:20:39 +00:00
|
|
|
compose = callPackage ./compose.nix { };
|
|
|
|
pkgs = callPackage ./pkgs.nix { inherit compose; };
|
|
|
|
shell = callPackage ./shell.nix { androidPkgs = pkgs; };
|
2020-04-22 17:05:18 +00:00
|
|
|
in {
|
2020-08-27 12:20:39 +00:00
|
|
|
inherit compose pkgs shell;
|
2020-04-22 17:05:18 +00:00
|
|
|
}
|