mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
f9df853e4a
Signed-off-by: Alexis Pentori <alexis@status.im>
15 lines
295 B
Nix
15 lines
295 B
Nix
# This file defines custom shells as well as shortcuts
|
|
# for accessing more nested shells.
|
|
{ config ? {}
|
|
, pkgs ? import ./pkgs.nix { inherit config; } }:
|
|
|
|
let
|
|
inherit (pkgs) lib mkShell callPackage;
|
|
default = callPackage ./shell.nix { };
|
|
|
|
shells = {
|
|
inherit default;
|
|
};
|
|
in
|
|
shells
|