mirror of
https://github.com/status-im/status-react.git
synced 2025-01-16 14:04:50 +00:00
ea837ff353
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
22 lines
305 B
Nix
22 lines
305 B
Nix
{ stdenv, pkgs }:
|
|
|
|
with pkgs;
|
|
with stdenv;
|
|
|
|
let
|
|
baseImage = callPackage ./base-image { };
|
|
|
|
in
|
|
{
|
|
buildInputs = lib.optional isLinux [
|
|
conan
|
|
nsis
|
|
baseImage
|
|
go # Needed for Windows build only
|
|
];
|
|
|
|
shellHook = ''
|
|
export STATUSREACT_WINDOWS_BASEIMAGE_PATH="${baseImage}/src"
|
|
'';
|
|
}
|