mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
Jakub Sokołowski
aca703a011
Changes: - Adds a new `nix-gc` Makefile target for removing old packages - Moves all `nix/*.sh` files to `nix/scripts/*.sh` to make things more tidy - Renames `TARGET_OS` into `TARGET` and makes it effective only with `nix/scripts/shell.sh` - Renames `target-os` Nix argument to just `target` and makes it effective only with `shell.nix` - Drops `IN_CI_ENVIRONMENT` env variable which was useless - Drops use of `target-os` argument outside of `shell.nix` (with few exceptions, but just in naming) - `nix/platform.nix` has been made obsolete and removed - Moves the definition of all major targets to `nix/targets.nix` - Moves the definition of all major shells to `nix/shells.nix` - Makes `default.nix` and `shell.nix` just thin wrappers around `nix/default.nix` - `nix/nixpkgs-bootstrap.nix` has been moved to `nix/pkgs.nix` - All package and tool overrides have been moved to `nix/pkgs.nix` - Explicit passing of contents of `pkgs` has been removed in favor of `callPackage` doing it for us - `nix/bootstrapped-shell.nix` has been moved to `nix/tools/mkShell.nix` - A new `mergeSh` tool has been added to `pkgs` from `nix/tools/mergeSh.nix` - This tool is used to merge shells created using `mkShell` - `mobile/targets/jsbundle.nix` has been moved to `mobile/android/jsbundle/default.nix` - Moves `status-go` version sanitization to `nix/status-go/utils.nix` - Renames version to rawVersion and versionName to cleanVersion in status-go derivation - Ports nix/mobile/ios/install-pods-and-status-go.sh to Nix sub-shells - Moves adjustment of `inotify/max_user_watches` out into `scripts/inotify_fix.sh` - Makes iOS builds use the Nix version of Fastlane Signed-off-by: Jakub Sokołowski <jakub@status.im>
52 lines
1.6 KiB
Bash
Executable File
52 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
########################################################################
|
|
# This install script will setup your development dependencies on OS X
|
|
# or Ubuntu. Ubuntu 18.04 is the only tested version.
|
|
# It is not required or supported in NixOS.
|
|
#
|
|
# Usage: scripts/setup
|
|
########################################################################
|
|
|
|
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
|
|
source "$GIT_ROOT/scripts/lib/setup/path-support.sh"
|
|
|
|
source_lib "output.sh"
|
|
source_lib "packages.sh"
|
|
source_lib "platform.sh"
|
|
|
|
exit_unless_os_supported
|
|
|
|
####
|
|
setup_header "Checking prerequisites..."
|
|
|
|
_need_curl=0
|
|
! is_nixos && ! program_exists nix && _need_curl=1
|
|
|
|
if [ $_need_curl -eq 1 ] && ! program_exists "curl"; then
|
|
cecho "@b@yellow[[Please install curl before running setup.]]"
|
|
exit 1
|
|
fi
|
|
|
|
# bump max watches limit to avoid issues with RN builds
|
|
$GIT_ROOT/scripts/inotify_fix.sh
|
|
|
|
####
|
|
setup_header "Installing requirements..."
|
|
|
|
if [ "$IN_NIX_SHELL" != 'pure' ] && ! is_nixos && ! program_exists nix; then
|
|
required_version="2.3.1"
|
|
NIX_INSTALLER_NO_MODIFY_PROFILE=1 NIX_IGNORE_SYMLINK_STORE=1 bash <(curl https://nixos.org/releases/nix/nix-${required_version}/install) --no-daemon
|
|
if [ $? -eq 0 ]; then
|
|
echo -e "${YELLOW}**********************************************************************************************************"
|
|
echo "The Nix package manager was successfully installed."
|
|
echo -e "**********************************************************************************************************${NC}"
|
|
else
|
|
echo "Please see https://nixos.org/nix/manual/#chap-installation"
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
####
|
|
setup_complete
|