brew bundle
and Brewfile
Bundler for non-Ruby dependencies from Homebrew, Homebrew Cask, Mac App Store and Visual Studio Code (and forks/variants).
Homebrew Cask is optional and used for installing Mac applications.
mas
is optional and used for installing Mac App Store applications.
Visual Studio Code (or a fork/variant) is optional and used for installing Visual Studio Code extensions.
See brew bundle
section of man brew
or brew bundle --help
.
An example Brewfile
:
# 'brew tap'
tap "homebrew/cask"
# 'brew tap' with custom Git URL
tap "user/tap-repo", "https://user@bitbucket.org/user/homebrew-tap-repo.git"
# 'brew tap' with arguments
tap "user/tap-repo", "https://user@bitbucket.org/user/homebrew-tap-repo.git", force_auto_update: true
# set arguments for all 'brew install --cask' commands
cask_args appdir: "~/Applications", require_sha: true
# 'brew install'
brew "imagemagick"
# 'brew install --with-rmtp', 'brew link --overwrite', 'brew services restart' even if no install/upgrade
brew "denji/nginx/nginx-full", link: :overwrite, args: ["with-rmtp"], restart_service: :always
# 'brew install', always 'brew services restart', 'brew link', 'brew unlink mysql' (if it is installed)
brew "mysql@5.6", restart_service: :changed, link: true, conflicts_with: ["mysql"]
# 'brew install' and run a command if installer or upgraded.
brew "postgresql@16",
postinstall: "${HOMEBREW_PREFIX}/opt/postgresql@16/bin/postgres -D ${HOMEBREW_PREFIX}/var/postgresql@16"
# 'brew install' and write the installed version to the '.ruby-version' file.
brew "ruby", version_file: ".ruby-version"
# install only on specified OS
brew "gnupg" if OS.mac?
brew "glibc" if OS.linux?
# 'brew install --cask'
cask "google-chrome"
# 'brew install --cask --appdir=~/my-apps/Applications'
cask "firefox", args: { appdir: "~/my-apps/Applications" }
# bypass Gatekeeper protections (NOT RECOMMENDED)
cask "firefox", args: { no_quarantine: true }
# always upgrade auto-updated or unversioned cask to latest version even if already installed
cask "opera", greedy: true
# 'brew install --cask' only if '/usr/libexec/java_home --failfast' fails
cask "java" unless system "/usr/libexec/java_home", "--failfast"
# 'brew install --cask' and run a command if installer or upgraded.
cask "google-cloud-sdk", postinstall: "${HOMEBREW_PREFIX}/bin/gcloud components update"
# 'mas install'
mas "1Password", id: 443_987_910
# 'code --install-extension' or equivalent command for a VS Code fork/variant
vscode "GitHub.codespaces"
# Set an environment variable to be used e.g. inside `brew bundle exec`
# Mostly only `HOMEBREW_*` variables are passed through to other `brew` commands.
ENV["SOME_ENV_VAR"] = "some_value"
Homebrew is a rolling release package manager so it does not support installing arbitrary older versions of software.
brew bundle
currently supports Homebrew, Homebrew Cask, Mac App Store and Visual Studio Code (and forks/variants).
We are interested in contributions for other installers/checkers/dumpers but they must:
Brewfile
sudo
to installNote: based on these criteria, we would not accept e.g. Whalebrew today.