mirror of
https://github.com/jimeh/build-emacs-for-macos.git
synced 2026-02-19 13:06:38 +00:00
The description includes links to the Emacs source repo used, the git ref, commit, tarball download URL, and build log (GitHub Actions Run).
18 lines
467 B
Go
18 lines
467 B
Go
package source
|
|
|
|
import (
|
|
"github.com/jimeh/build-emacs-for-macos/pkg/commit"
|
|
"github.com/jimeh/build-emacs-for-macos/pkg/repository"
|
|
)
|
|
|
|
type Source struct {
|
|
Ref string `yaml:"ref,omitempty"`
|
|
Repository *repository.Repository `yaml:"repository,omitempty"`
|
|
Commit *commit.Commit `yaml:"commit,omitempty"`
|
|
Tarball *Tarball `yaml:"tarball,omitempty"`
|
|
}
|
|
|
|
type Tarball struct {
|
|
URL string `yaml:"url,omitempty"`
|
|
}
|