mirror of
https://github.com/anchore/syft.git
synced 2026-02-13 02:56:42 +01:00
* Add binary classifier for swipl Signed-off-by: Laurent Goderre <laurent.goderre@docker.com> * Added cataloger for SWI Prolog Pack packages Signed-off-by: Laurent Goderre <laurent.goderre@docker.com> --------- Signed-off-by: Laurent Goderre <laurent.goderre@docker.com>
13 lines
525 B
Go
13 lines
525 B
Go
package pkg
|
|
|
|
type SwiplPackEntry struct {
|
|
Name string `toml:"name" json:"name"`
|
|
Version string `toml:"version" json:"version"`
|
|
Author string `json:"author" mapstruct:"Author"`
|
|
AuthorEmail string `json:"authorEmail" mapstruct:"Authoremail"`
|
|
Packager string `json:"packager" mapstructure:"Packager"`
|
|
PackagerEmail string `json:"packagerEmail" mapstruct:"Packageremail"`
|
|
Homepage string `json:"homepage"`
|
|
Dependencies []string `toml:"dependencies" json:"dependencies"`
|
|
}
|