nix: add status-go shell

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-05-15 12:19:51 +02:00
parent 64b8b9f170
commit 707a9b7095
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 5 additions and 0 deletions

View File

@ -96,6 +96,7 @@ let
linux = targets.desktop.linux.shell;
macos = targets.desktop.macos.shell;
windows = targets.desktop.macos.shell;
status-go = targets.status-go.mobile.android;
};
# for merging the default shell with others

View File

@ -41,4 +41,8 @@ in rec {
desktop = callPackage ./desktop {
inherit meta source goBuildFlags goBuildLdFlags;
};
shell = mkShell {
inputsFrom = [ mobile.android mobile.ios desktop ];
};
}