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