search

A menu icon Tables {{numberOfTablesDisplayed}}

right chevron down chevron

Tables{{numberOfTablesDisplayed}}

macOS logo Windows logo Linux logo macOS logo

homebrew​_packages

The installed homebrew package database.

Column Type Description
name text Package name
path text Package install path
prefix text Homebrew install prefix
Not returned in SELECT * FROM homebrew_packages.
type text Package type ('formula' or 'cask')
version text Current 'linked' version

Example

Check the version of a package installed via homebrew. This example checks the version of ffmeg, which should be replaced by the actual package you want to check for. This is useful for finding problematic or vulnerable installs, though Fleet will detect vulnerable packages automatically.

SELECT version FROM homebrew_packages WHERE name = 'ffmpeg';