# Installation
## Nix
maintainer: [@Aylur](https://github.com/Aylur)
Read more about it on the [nix page](./nix#astal)
## Arch
maintainer: [@kotontrion](https://github.com/kotontrion)
:::code-group
```sh [Core Library]
yay -S libastal-io-git libastal-git
```
```sh [Every Library]
yay -S libastal-meta
```
:::
## Bulding libastal from source
1. Install the following dependencies
:::code-group
```sh [ Arch]
sudo pacman -Syu meson vala gtk3 gtk-layer-shell gobject-introspection
```
```sh [ Fedora]
sudo dnf install meson gcc valac gtk3-devel gtk-layer-shell-devel gobject-introspection-devel
```
```sh [ Ubuntu]
sudo apt install meson valac libgtk-3-dev libgtk-layer-shell-dev gobject-introspection libgirepository1.0-dev
```
:::
2. Clone the repo
```sh
git clone https://github.com/aylur/astal.git /tmp/astal
```
3. Build and install with `meson`
- astal-io
```sh
cd /tmp/astal/lib/astal/io
meson setup --prefix /usr build
meson install -C build
```
- astal3
```sh
cd /tmp/astal/lib/astal/gtk3
meson setup --prefix /usr build
meson install -C build
```