2
0
mirror of https://github.com/status-im/status-mobile.git synced 2025-01-17 04:01:28 +00:00
Pedro Pombeiro e220ecbb0a
Cleanup
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2020-01-10 19:59:54 +01:00

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;
}