mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
14 lines
244 B
Nix
14 lines
244 B
Nix
{
|
|
config ? {},
|
|
pkgs ? import ./pkgs.nix { inherit config; }
|
|
}:
|
|
|
|
let
|
|
inherit (pkgs) stdenv callPackage;
|
|
|
|
status-go = callPackage ./status-go { };
|
|
mobile = callPackage ./mobile { inherit status-go; };
|
|
in {
|
|
inherit mobile status-go;
|
|
}
|