mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 02:56:07 +00:00
10 lines
207 B
Nix
10 lines
207 B
Nix
{
|
|
config ? { status-im = { build-type = ""; }; }, # for passing build options, see nix/README.md
|
|
}:
|
|
|
|
let
|
|
main = import ./nix/default.nix { inherit config; };
|
|
in {
|
|
inherit (main) pkgs targets shells;
|
|
}
|