mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
e220ecbb0a
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
13 lines
265 B
Nix
13 lines
265 B
Nix
{
|
|
config ? {},
|
|
pkgs ? import ./pkgs.nix { inherit config; }
|
|
}:
|
|
|
|
let
|
|
# put all main targets and shells together for easy import
|
|
shells = pkgs.callPackage ./shells.nix { };
|
|
targets = pkgs.callPackage ./targets.nix { };
|
|
in {
|
|
inherit pkgs targets shells;
|
|
}
|