mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
a716f4e435
fixes #18291 ## Summary Changes worth mentioning are : - More hacks/patches - Force app to use `Java 17` everywhere to compile `kotlin,java` - `gems` were upgraded after a long time - `aapt2` was bumped to `8.1.1` - `metro` is now at `0.80.4` - `xcbeautify` was bumped to `1.4.0` - `@react-native-community/clipboard` lib was replaced with `@react-native-clipboard/clipboard` - `react-native-dialogs` lib was upgraded to `1.1.2` - `react-native-gesture-handler` lib was upgraded to `2.14.1` - `react-native-navigation` was upgraded to `7.37.2` ## Platforms - Android - iOS
29 lines
591 B
Nix
29 lines
591 B
Nix
{ lib, stdenv, callPackage, mkShell,
|
|
bundlerEnv, cocoapods, bundler, ruby, curl, clang }:
|
|
|
|
let
|
|
inherit (lib) optionals optionalString unique;
|
|
|
|
fastlane = callPackage ../../../fastlane {
|
|
bundlerEnv = _:
|
|
bundlerEnv {
|
|
name = "fastlane-gems";
|
|
gemdir = ../../../fastlane;
|
|
};
|
|
};
|
|
|
|
inherit (fastlane) shellHook;
|
|
|
|
buildInputs = [ ruby bundler fastlane curl clang ]
|
|
++ optionals stdenv.isDarwin [ cocoapods ];
|
|
in {
|
|
# HELPERS
|
|
inherit shellHook buildInputs;
|
|
|
|
# TARGETS
|
|
drv = fastlane;
|
|
shell = mkShell {
|
|
inherit shellHook buildInputs;
|
|
};
|
|
}
|