Downloading specific version of kopia

Hi,
Is there a way to download a specific version of kopia? Currently i am installing as mentioned below.

curl -s https://kopia.io/signing-key | apt-key add -
echo "deb http://packages.kopia.io/apt/ stable main" |  tee /etc/apt/sources.list.d/kopia.list
apt install kopia

This is not Kopia-specific, but you can do something like:

apt install kopia=0.8.3

The stable repo stores all released stable versions. The unstable repo has only a few of the latest ones, since they take up a lot of space.

Thanks for the reply.

How would one do this on MacOS via homebrew? I got it working by copy/pasting the code from the kopia.rb file on github from the version I wanted (0.9.0) into a local text document, then pointing brew install at that local file, but it was super hacky and I’m guessing not the correct way to do this :slight_smile:

((I’m mostly on Windows and have only used homebrew a handful of times so sorry if this is common knowledge. I couldn’t find anything about it on google or the forums))