mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-15 03:05:17 +00:00
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;
|
||
|
}
|