mirror of
https://github.com/jimeh/build-emacs-for-macos.git
synced 2026-02-19 04:56:39 +00:00
This serves as an alternative to Homebrew. It should be much more stable and cause less headaches over time for automated builds. There should be no change to the end user experience of using the build script, as it should still work with and use Homebrew by default. Additionally, Nix provides older Apple SDKs, allowing us to run against macOS 11.x SDKs. This allows the resulting Emacs.app builds to be compatible with macOS 11.x and later versions. In testing, this seems to be the case on macOS 11.x (x86_64) and macOS 12.x (arm64).
36 lines
1.2 KiB
Modula-2
36 lines
1.2 KiB
Modula-2
module github.com/jimeh/build-emacs-for-macos
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/bearer/gon v0.0.36
|
|
github.com/google/go-github/v35 v35.3.0
|
|
github.com/hashicorp/go-hclog v1.5.0
|
|
github.com/hexops/gotextdiff v1.0.3
|
|
github.com/jimeh/undent v1.1.0
|
|
github.com/stretchr/testify v1.7.2
|
|
github.com/urfave/cli/v2 v2.25.7
|
|
golang.org/x/oauth2 v0.14.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/fatih/color v1.16.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
|
golang.org/x/crypto v0.17.0 // indirect
|
|
golang.org/x/sys v0.15.0 // indirect
|
|
google.golang.org/appengine v1.6.8 // indirect
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
|
howett.net/plist v1.0.0 // indirect
|
|
)
|