Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Wayland deps to install commands #14

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
18 changes: 9 additions & 9 deletions started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,21 +102,21 @@ The steps for installing with MSYS2 (recommended) are as follows:

* You will need to install Go, gcc and the graphics library header files using your package manager, one of the following commands will probably work.
* **Debian / Ubuntu:**
`sudo apt-get install golang gcc libgl1-mesa-dev xorg-dev`
`sudo apt-get install golang gcc libgl1-mesa-dev xorg-dev libxkbcommon-dev libdecor-0-dev`
* **Fedora:**
`sudo dnf install golang golang-misc gcc libXcursor-devel libXrandr-devel mesa-libGL-devel libXi-devel libXinerama-devel libXxf86vm-devel`
`sudo dnf install golang golang-misc gcc libXcursor-devel libXrandr-devel mesa-libGL-devel libXi-devel libXinerama-devel libXxf86vm-devel libxkbcommon-devel libdecor-devel`
* **Arch Linux:**
`sudo pacman -S go xorg-server-devel libxcursor libxrandr libxinerama libxi`
`sudo pacman -S go xorg-server-devel libxcursor libxrandr libxinerama libxi libxkbcommon libdecor`
* **Solus:**
`sudo eopkg it -c system.devel golang mesalib-devel libxrandr-devel libxcursor-devel libxi-devel libxinerama-devel`
`sudo eopkg it -c system.devel golang mesalib-devel libxrandr-devel libxcursor-devel libxi-devel libxinerama-devel libxkbcommon-devel libdecor-devel`
* **openSUSE:**
`sudo zypper install go gcc libXcursor-devel libXrandr-devel Mesa-libGL-devel libXi-devel libXinerama-devel libXxf86vm-devel`
`sudo zypper install go gcc libXcursor-devel libXrandr-devel Mesa-libGL-devel libXi-devel libXinerama-devel libXxf86vm-devel libxkbcommon-devel libdecor-devel`
* **Void Linux:**
`sudo xbps-install -S go base-devel xorg-server-devel libXrandr-devel libXcursor-devel libXinerama-devel`
`sudo xbps-install -S go base-devel xorg-server-devel libXrandr-devel libXcursor-devel libXinerama-devel libxkbcommon-devel libdecor-devel`
* **Alpine Linux**
`sudo apk add go gcc libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev linux-headers mesa-dev`
`sudo apk add go gcc libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev linux-headers mesa-dev libxkbcommon-dev libdecor-dev`
* **NixOS**
`nix-shell -p libGL pkg-config xorg.libX11.dev xorg.libXcursor xorg.libXi xorg.libXinerama xorg.libXrandr xorg.libXxf86vm`
`nix-shell -p libGL pkg-config xorg.libX11.dev xorg.libXcursor xorg.libXi xorg.libXinerama xorg.libXrandr xorg.libXxf86vm libxkbcommon libdecor`

</div>
</div>
Expand All @@ -125,7 +125,7 @@ The steps for installing with MSYS2 (recommended) are as follows:
<div style="text-align: left" markdown="1">

* You will need to install Go, gcc and the graphics library header files using the package manager.
* `sudo apt-get install golang gcc libegl1-mesa-dev xorg-dev`
* `sudo apt-get install golang gcc libegl1-mesa-dev xorg-dev libxkbcommon-dev libdecor-0-dev`

</div>
</div>
Expand Down