mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-29 01:44:54 +00:00
17 lines
218 B
Nix
17 lines
218 B
Nix
{ stdenv, pkgs }:
|
|
|
|
with pkgs;
|
|
with stdenv;
|
|
|
|
let
|
|
baseImage = callPackage ./base-image { };
|
|
|
|
in
|
|
{
|
|
buildInputs = [ baseImage ];
|
|
|
|
shellHook = ''
|
|
export STATUSREACT_MACOS_BASEIMAGE_PATH="${baseImage}/src"
|
|
'';
|
|
}
|