diff --git a/README.md b/README.md new file mode 100644 index 0000000..5ba5632 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +WIP + +# Building + +Simply run `cargo build --release` from the repository root. For missing dependencies, see instructions below. + +## Archlinux + +`pacman -Sy libadwaita` + +## Nix + +If you are on old distro but have nix, just do `nix-shell` from repository root. It will open shell with all dependencies for build. diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..da9ae47 --- /dev/null +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + buildInputs = with pkgs.buildPackages; [ libadwaita ]; + nativeBuildInputs = with pkgs; [ pkg-config ]; +}