website/versioned_docs/version-v2.13.0/guides/linux-distro-support.mdx
Wails offers Linux support but providing installation instructions for all available distributions is an impossible task. Instead, Wails tries to determine if the packages you need to develop applications are available via your system's package manager. Currently, we support the following package managers:
There may be circumstances where your distro uses one of the supported package managers but the package name
is different. For example, you may use an Ubuntu derivative, but the package name for gtk may be different. Wails
attempts to find the correct package by iterating through a list of package names.
The list of packages are stored in the packagemanager specific file in the v2/internal/system/packagemanager
directory. In our example, this would be v2/internal/system/packagemanager/apt.go.
In this file, the list of packages are defined by the Packages() method:
func (a *Apt) Packages() packagemap {
return packagemap{
"libgtk-3": []*Package{
{Name: "libgtk-3-dev", SystemPackage: true, Library: true},
},
"libwebkit": []*Package{
{Name: "libwebkit2gtk-4.0-dev", SystemPackage: true, Library: true},
},
"gcc": []*Package{
{Name: "build-essential", SystemPackage: true},
},
"pkg-config": []*Package{
{Name: "pkg-config", SystemPackage: true},
},
"npm": []*Package{
{Name: "npm", SystemPackage: true},
},
"docker": []*Package{
{Name: "docker.io", SystemPackage: true, Optional: true},
},
}
}
Let's assume that in our linux distro, libgtk-3 is packaged under the name lib-gtk3-dev.
We could add support for this by adding the following line:
func (a *Apt) Packages() packagemap {
return packagemap{
"libgtk-3": []*Package{
{Name: "libgtk-3-dev", SystemPackage: true, Library: true},
{Name: "lib-gtk3-dev", SystemPackage: true, Library: true},
},
"libwebkit": []*Package{
{Name: "libwebkit2gtk-4.0-dev", SystemPackage: true, Library: true},
},
"gcc": []*Package{
{Name: "build-essential", SystemPackage: true},
},
"pkg-config": []*Package{
{Name: "pkg-config", SystemPackage: true},
},
"npm": []*Package{
{Name: "npm", SystemPackage: true},
},
"docker": []*Package{
{Name: "docker.io", SystemPackage: true, Optional: true},
},
}
}
To add a new package manager, perform the following steps:
v2/internal/system/packagemanager called <pm>.go, where <pm> is the name of the package manager.pm.go:type PackageManager interface {
Name() string
Packages() packagemap
PackageInstalled(*Package) (bool, error)
PackageAvailable(*Package) (bool, error)
InstallCommand(*Package) string
}
Name() should return the name of the package managerPackages() should return a packagemap, that provides candidate filenames for dependenciesPackageInstalled() should return true if the given package is installedPackageAvailable() should return true if the given package is not installed but available for installationInstallCommand() should return the exact command to install the given package nameTake a look at the other package managers code to get an idea how this works.
:::info Remember
If you add support for a new package manager, don't forget to also update this page!
:::
When distributing your Wails application, end users need the GTK3 and WebKit2GTK runtime libraries installed. The package names vary by distribution:
| Distribution | GTK3 | WebKit2GTK | ABI | Installation Command |
|---|---|---|---|---|
| Debian 12 / Ubuntu 22.04+ | libgtk-3-0 | libwebkit2gtk-4.1-0 | 4.1 | apt install libgtk-3-0 libwebkit2gtk-4.1-0 |
| Debian 11 / Ubuntu 20.04 | libgtk-3-0 | libwebkit2gtk-4.0-37 | 4.0 | apt install libgtk-3-0 libwebkit2gtk-4.0-37 |
| Fedora 40+ | gtk3 | webkit2gtk4.1 | 4.1 | dnf install gtk3 webkit2gtk4.1 |
| RHEL / CentOS / AlmaLinux / Rocky 8-9 | gtk3 | webkit2gtk3 | 4.0 | dnf install gtk3 webkit2gtk3 |
| openSUSE Leap / Tumbleweed | libgtk-3-0 | libwebkit2gtk-4_1-0 | 4.1 | zypper install libgtk-3-0 libwebkit2gtk-4_1-0 |
| Arch Linux / Manjaro | gtk3 | webkit2gtk-4.1 | 4.1 | pacman -S gtk3 webkit2gtk-4.1 |
WebKit2GTK has two ABI versions:
When building your application, use the appropriate build tag:
-tags webkit2_41 for distributions with ABI 4.1 (default for most modern distros)-tags webkit2_40 for RHEL-based systems and older Debian/Ubuntulibwebkit2gtk-4_1-0 for the modern ABIwebkit2gtk4.1 starting from version 40; earlier versions use 4.0webkit2gtk3 corresponds to ABI 4.0; 4.1 is not availablewebkit2gtk (4.0) and webkit2gtk-4.1; use the latter for modern ABIWhen creating Linux packages with nfpm, you need to specify the correct dependencies for each distribution.
depends:
- libgtk-3-0
- libwebkit2gtk-4.1-0
overrides:
rpm:
depends:
- libgtk-3-0
- libwebkit2gtk-4_1-0
archlinux:
depends:
- gtk3
- webkit2gtk-4.1
depends:
- gtk3
- webkit2gtk3
overrides:
deb:
depends:
- libgtk-3-0
- libwebkit2gtk-4.0-37
archlinux:
depends:
- gtk3
- webkit2gtk
depends:
- gtk3
- webkit2gtk4.1
:::tip
To support multiple distributions, you may need separate nfpm configuration files for different ABI versions.
:::