2020-06-05 09:23:22 +00:00
|
|
|
#
|
|
|
|
# Defines the default shell that is used when target is not specified.
|
|
|
|
# It is also merged with all the other shells for a complete set of tools.
|
|
|
|
#
|
|
|
|
{ config ? {}
|
|
|
|
, pkgs ? import ./pkgs.nix { inherit config; } }:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (pkgs) mkShell;
|
|
|
|
in mkShell {
|
2022-07-17 12:37:46 +00:00
|
|
|
name = "status-mobile-shell"; # for identifying all shells
|
2020-06-05 09:23:22 +00:00
|
|
|
|
|
|
|
buildInputs = with pkgs; lib.unique ([
|
|
|
|
# core utilities that should always be present in a shell
|
2023-03-10 09:41:22 +00:00
|
|
|
bash curl wget file unzip flock procps
|
2020-06-05 09:23:22 +00:00
|
|
|
git gnumake jq ncurses gnugrep parallel
|
|
|
|
lsof # used in start-react-native.sh
|
|
|
|
# build specific utilities
|
|
|
|
clojure maven watchman
|
2022-12-20 13:57:49 +00:00
|
|
|
# lint specific utilities
|
2022-12-28 02:05:24 +00:00
|
|
|
clj-kondo zprint
|
2020-06-05 09:23:22 +00:00
|
|
|
# other nice to have stuff
|
|
|
|
yarn nodejs python27
|
|
|
|
] # and some special cases
|
2023-03-10 09:41:22 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ cocoapods clang tcl ]
|
2020-06-05 09:23:22 +00:00
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ gcc8 ]
|
|
|
|
);
|
|
|
|
|
|
|
|
# avoid terminal issues
|
|
|
|
TERM="xterm";
|
|
|
|
|
|
|
|
# default locale
|
|
|
|
LANG="en_US.UTF-8";
|
|
|
|
LANGUAGE="en_US.UTF-8";
|
|
|
|
|
|
|
|
# just a nicety for easy access to node scripts
|
|
|
|
shellHook = ''
|
2022-07-17 12:37:46 +00:00
|
|
|
export STATUS_MOBILE_HOME=$(git rev-parse --show-toplevel)
|
|
|
|
export PATH="$STATUS_MOBILE_HOME/node_modules/.bin:$PATH"
|
2020-06-05 09:23:22 +00:00
|
|
|
'';
|
|
|
|
}
|