Installation
Arch linux - AUR
yay -S gowall
NixOS - ( Maintainer : Emily Trau )
environment.systemPackages = [
pkgs.gowall
];
More installation options : here
Void Linux - XBPS-SRC ( Maintainer : elbachir-one )
Assuming you have void-packages
git clone https://github.com/elbachir-one/void-templates
cd void-templates/ && cp -r gowall/ void-packages/srcpkgs/
cd void-packages/
./xbps-src pkg gowall
sudo xbps-install -R hostdir/binpkgs gowall
Build from source
🔨 Clone the repo, build the project and move it inside your $PATH
git clone https://github.com/Achno/gowall
cd gowall
go build
sudo cp gowall /usr/local/bin/
gowall
Go install
if you have $GOPATH
setup correctly Eg. you have the following in your .zshrc / .bashrc
export GOPATH=$(go env GOPATH)
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOBIN
And simply use go install
go install github.com/Achno/gowall@latest