nix: add status-go shell
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
64b8b9f170
commit
707a9b7095
|
@ -96,6 +96,7 @@ let
|
||||||
linux = targets.desktop.linux.shell;
|
linux = targets.desktop.linux.shell;
|
||||||
macos = targets.desktop.macos.shell;
|
macos = targets.desktop.macos.shell;
|
||||||
windows = targets.desktop.macos.shell;
|
windows = targets.desktop.macos.shell;
|
||||||
|
status-go = targets.status-go.mobile.android;
|
||||||
};
|
};
|
||||||
|
|
||||||
# for merging the default shell with others
|
# for merging the default shell with others
|
||||||
|
|
|
@ -41,4 +41,8 @@ in rec {
|
||||||
desktop = callPackage ./desktop {
|
desktop = callPackage ./desktop {
|
||||||
inherit meta source goBuildFlags goBuildLdFlags;
|
inherit meta source goBuildFlags goBuildLdFlags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
shell = mkShell {
|
||||||
|
inputsFrom = [ mobile.android mobile.ios desktop ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue