github.com/status-im/status-go@v1.1.0/nix/shells.nix (about)

     1  # This file defines custom shells as well as shortcuts
     2  # for accessing more nested shells.
     3  { config ? {}
     4  , pkgs ? import ./pkgs.nix { inherit config; } }:
     5  
     6  let
     7    inherit (pkgs) lib mkShell callPackage;
     8    default = callPackage ./shell.nix { };
     9  
    10    shells = {
    11      inherit default;
    12    };
    13  in
    14    shells