15 lines
289 B
Nix
15 lines
289 B
Nix
|
#
|
||
|
# This Nix expression centralizes the configuration
|
||
|
# for the Android development environment.
|
||
|
#
|
||
|
|
||
|
{ callPackage }:
|
||
|
|
||
|
let
|
||
|
pkgs = callPackage ./pkgs.nix { };
|
||
|
shell = callPackage ./shell.nix { };
|
||
|
licensedPkgs = callPackage ./licensed.nix { };
|
||
|
in {
|
||
|
inherit pkgs licensedPkgs shell;
|
||
|
}
|