mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
Jakub Sokołowski
5d9a29b3c8
Mostly achieved by running via `nix-linter`. Signed-off-by: Jakub Sokołowski <jakub@status.im>
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;
|
|
}
|