github.com/anchore/syft@v1.38.2/syft/pkg/homebrew.go (about) 1 package pkg 2 3 // HomebrewFormula represents metadata about a Homebrew formula package extracted from formula JSON files. 4 type HomebrewFormula struct { 5 // Tap is Homebrew tap this formula belongs to (e.g. "homebrew/core") 6 Tap string `json:"tap,omitempty"` 7 8 // Homepage is the upstream project homepage URL 9 Homepage string `json:"homepage,omitempty"` 10 11 // Description is a human-readable formula description 12 Description string `json:"description,omitempty"` 13 }