Okay letās check a few things, which version of go do you have installed?
Iām using 1.10.2 (the most current version)
% go version
go version go1.10.2 darwin/amd64
Assuming your āgo workspaceā is ~/go then source tree for maiden should be in ~/go/src/github.com/monome/maiden.
You can achieve this by using go get -d github.com/monome/maiden or manually create the directory and clone:
mkdir -pv ~/go/src/github.com/monome && cd ~/go/src/github.com/monome && git clone https://github.com/monome/maiden.git
ā¦then once the source directory is in the right place, cd into that directory and run:
glide install
(aside: Iām using version 0.13.1 of glide)
ā¦from there a build should work. If it doesnāt consider setting the GOPATH environment to point at ~/go and try again.