Ghostty relies on downstream package maintainers to distribute Ghostty to end-users. This document provides guidance to package maintainers on how to package Ghostty for distribution.
Note
While Ghostty went through an extensive private beta testing period, packaging Ghostty is immature and may require additional build script tweaks and documentation improvement. I'm extremely motivated to work with package maintainers to improve the packaging process. Please open issues to discuss any packaging issues you encounter.
Source tarballs with stable checksums are available for tagged releases
at release.files.ghostty.org
in the following URL format where
VERSION
is the version number with no prefix such as 1.0.0
:
https://release.files.ghostty.org/VERSION/ghostty-source.tar.gz
https://release.files.ghostty.org/VERSION/ghostty-source.tar.gz.minisig
Signature files are signed with minisign using the following public key:
RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
Tip source tarballs are available on the
GitHub releases page.
Use the ghostty-source.tar.gz
asset and not the GitHub auto-generated
source tarball. These tarballs are generated for every commit to
the main
branch and are not associated with a specific version.
Zig is required to build Ghostty. Prior to Zig 1.0, Zig releases often have breaking changes. Ghostty requires specific Zig versions depending on the Ghostty version in order to build. To make things easier for package maintainers, Ghostty always uses some released version of Zig.
To find the version of Zig required to build Ghostty, check the required_zig
constant in build.zig
. You don't need to know Zig to extract this information.
This version will always be an official released version of Zig.
For example, at the time of writing this document, Ghostty requires Zig 0.13.0.
The following is a standard example of how to build Ghostty for system packages. This is not the recommended way to build Ghostty for your own system. For that, see the primary README.
- First, we fetch our dependencies from the internet into a cached directory. This is the only step that requires internet access:
ZIG_GLOBAL_CACHE_DIR=/tmp/offline-cache ./nix/build-support/fetch-zig-cache.sh
- Next, we build Ghostty. This step requires no internet access:
DESTDIR=/tmp/ghostty \
zig build \
--prefix /usr \
--system /tmp/offline-cache/p \
-Doptimize=ReleaseFast \
-Dcpu=baseline
The build options are covered in the next section, but this will build
and install Ghostty to /tmp/ghostty
with the prefix /usr
(i.e. the
binary will be at /tmp/ghostty/usr/bin/ghostty
). This style is common
for system packages which separate a build and install step, since the
install step can then be done with a mv
or cp
command (from /tmp/ghostty
to wherever the package manager expects it).
Ghostty uses the Zig build system. You can see all available build options by
running zig build --help
. The following are options that are particularly
relevant to package maintainers:
-
--prefix
: The installation prefix. Combine with theDESTDIR
environment variable to install to a temporary directory for packaging. -
--system
: The path to the offline cache directory. This disables any package fetching from the internet. This flag also triggers all dependencies to be dynamically linked by default. This flag also makes the binary a PIE (Position Independent Executable) by default (override with-Dpie
). -
-Doptimize=ReleaseFast
: Build with optimizations enabled and safety checks disabled. This is the recommended build mode for distribution. I'd prefer a safe build but terminal emulators are performance-sensitive and the safe build is currently too slow. I plan to improve this in the future. Other build modes are available:Debug
,ReleaseSafe
, andReleaseSmall
. -
-Dcpu=baseline
: Build for the "baseline" CPU of the target architecture. This avoids building for newer CPU features that may not be available on all target machines. -
-Dtarget=$arch-$os-$abi
: Build for a specific target triple. This is often necessary for system packages to specify a specific minimum Linux version, glibc, etc. Runzig targets
to a get a full list of available targets.