status-react/nix/mobile/default.nix
Jakub Sokołowski 5d9a29b3c8
nix: cleanup of unused variables
Mostly achieved by running via `nix-linter`.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-05-31 12:03:20 +02:00

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;
}