2022-05-26 11:11:34 +02:00
|
|
|
{ lib, callPackage, mkShell, status-go }:
|
2019-03-25 17:35:01 +01:00
|
|
|
|
|
|
|
let
|
2019-11-29 11:20:08 +01:00
|
|
|
fastlane = callPackage ./fastlane { };
|
2020-04-22 19:05:18 +02:00
|
|
|
|
2023-05-16 18:42:56 +02:00
|
|
|
jsbundle = callPackage ./jsbundle { };
|
|
|
|
|
2020-04-22 19:05:18 +02:00
|
|
|
android = callPackage ./android {
|
2023-05-16 18:42:56 +02:00
|
|
|
inherit jsbundle;
|
2020-04-23 20:19:12 +02:00
|
|
|
status-go = status-go.mobile.android;
|
2019-11-29 11:20:08 +01:00
|
|
|
};
|
2020-04-22 19:05:18 +02:00
|
|
|
|
|
|
|
ios = callPackage ./ios {
|
2020-05-06 15:33:54 +02:00
|
|
|
inherit fastlane;
|
2020-04-23 20:19:12 +02:00
|
|
|
status-go = status-go.mobile.ios;
|
2019-11-29 11:20:08 +01:00
|
|
|
};
|
2020-04-22 19:05:18 +02:00
|
|
|
|
2019-06-04 18:50:29 +02:00
|
|
|
selectedSources = [
|
2020-04-23 20:19:12 +02:00
|
|
|
status-go.mobile.android
|
|
|
|
status-go.mobile.ios
|
2020-04-22 19:05:18 +02:00
|
|
|
fastlane
|
|
|
|
android
|
|
|
|
ios
|
2019-11-29 11:20:08 +01:00
|
|
|
];
|
2019-06-04 18:50:29 +02:00
|
|
|
|
|
|
|
in {
|
2020-05-06 00:48:50 +02:00
|
|
|
shell = mkShell {
|
2022-05-26 11:11:34 +02:00
|
|
|
inputsFrom = lib.catAttrs "shell" selectedSources;
|
2020-05-06 00:48:50 +02:00
|
|
|
};
|
2019-03-25 17:35:01 +01:00
|
|
|
|
2019-06-04 18:50:29 +02:00
|
|
|
# TARGETS
|
2023-05-16 18:42:56 +02:00
|
|
|
inherit android ios fastlane jsbundle;
|
2019-06-04 18:50:29 +02:00
|
|
|
}
|