mirror of
https://github.com/status-im/status-react.git
synced 2025-01-12 03:54:32 +00:00
Jakub Sokołowski
73a8992db7
Changes: - Drop `nix/mobile/android/maven-and-npm-deps/default.nix` - Replace it with much simpler `nix/tools/patchNodeModules` - Move Gradle patching tool to `nix/pkgs/patch-maven-srcs` - Simplify it by using `gradle.deps` and patched node modules separately - Change `TARGET` for `release-android` to `default` - Move `mobile/reset-node_modules.sh` to `scripts/node_modules.sh` - Move `nix/mobile/android/targets/release-android.nix` to `nix/mobile/android/release.nix` Signed-off-by: Jakub Sokołowski <jakub@status.im>
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;
|
|
}
|