mirror of
https://github.com/status-im/status-react.git
synced 2025-01-16 22:16:34 +00:00
18 lines
216 B
Nix
18 lines
216 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
|
|
];
|
|
}
|