12 lines
392 B
Nix
12 lines
392 B
Nix
{
|
|
config ? { }, # for passing status_go.src_override
|
|
target ? "default" # see nix/shells.nix for all valid values
|
|
}:
|
|
|
|
let
|
|
project = import ./default.nix { inherit config; };
|
|
in
|
|
# this is where the $TARGET env variable affects things
|
|
project.pkgs.mergeSh project.shells.default [ project.shells.${target} ]
|
|
# combining with default shell to include all the standard utilities
|