status-react/nix/mobile/default.nix

31 lines
514 B
Nix

{ lib, callPackage, mkShell, status-go }:
let
fastlane = callPackage ./fastlane { };
android = callPackage ./android {
status-go = status-go.mobile.android;
};
ios = callPackage ./ios {
inherit fastlane;
status-go = status-go.mobile.ios;
};
selectedSources = [
status-go.mobile.android
status-go.mobile.ios
fastlane
android
ios
];
in {
shell = mkShell {
inputsFrom = lib.catAttrs "shell" selectedSources;
};
# TARGETS
inherit android ios fastlane;
}