tailscale: switch version and git ref to use a tag.

The tag points to the same commit hash, so the binary
is unchanged.

Signed-off-by: David Anderson <dave@natulte.net>
This commit is contained in:
David Anderson 2020-03-23 12:11:14 -07:00
parent 353c6c948e
commit 3fa813e820

View file

@ -2,12 +2,12 @@
buildGoModule rec {
pname = "tailscale";
version = "0.97-0";
version = "0.97";
src = fetchFromGitHub {
owner = "tailscale";
repo = "tailscale";
rev = "dd14b658a2f42a3b4d78682e4f4f82f730262c5c";
rev = "v${version}";
sha256 = "0ckjqhj99c25h8xgyfkrd19nw5w4a7972nvba9r5faw5micjs02n";
};