mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-04 04:45:19 +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;
|
|
}
|