From 707a9b70959cb1eb6949f041789923b690be5d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 15 May 2020 12:19:51 +0200 Subject: [PATCH] nix: add status-go shell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- nix/shells.nix | 1 + nix/status-go/default.nix | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/nix/shells.nix b/nix/shells.nix index b9afa19b20..bfad1e2cfd 100644 --- a/nix/shells.nix +++ b/nix/shells.nix @@ -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 diff --git a/nix/status-go/default.nix b/nix/status-go/default.nix index 52298d256f..4e37e1c1d1 100644 --- a/nix/status-go/default.nix +++ b/nix/status-go/default.nix @@ -41,4 +41,8 @@ in rec { desktop = callPackage ./desktop { inherit meta source goBuildFlags goBuildLdFlags; }; + + shell = mkShell { + inputsFrom = [ mobile.android mobile.ios desktop ]; + }; }