2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-25 05:05:46 +00:00

11 lines
213 B
Nix
Raw Normal View History

{
config ? {},
pkgs ? import ./pkgs.nix { inherit config; }
}:
let
# put all main targets and shells together for easy import
shells = pkgs.callPackage ./shells.nix { };
in {
inherit pkgs shells;
}