Brewfile 821 B

12345678910111213141516171819202122232425262728293031
  1. # 2021-02-08 - The CI checks the hash of this file to determine if to create a new
  2. # cache or not. If you want to force a new cache simply change the date on the line above
  3. brew 'pyenv'
  4. # required for pyenv's python-build
  5. brew 'openssl'
  6. brew 'readline'
  7. # required for yarn test -u
  8. brew 'watchman'
  9. # required to build some of sentry's dependencies
  10. brew 'pkgconfig'
  11. brew 'libxslt'
  12. brew 'libxmlsec1'
  13. brew 'geoip'
  14. # Currently needed because on Big Sur there's no wheel for it
  15. brew 'librdkafka'
  16. # direnv isn't defined here, because we have it configured to check for a bootstrapped environment.
  17. # If it's installed in the early steps of the setup process, it just leads to confusion.
  18. # brew 'direnv'
  19. tap 'homebrew/cask'
  20. # required for acceptance testing
  21. cask 'chromedriver'
  22. # required to run devservices
  23. cask 'docker'