tailscale: 0.99.1-0 -> 0.100.0-153

Signed-off-by: David Anderson <dave@natulte.net>
This commit is contained in:
David Anderson 2020-07-19 20:23:36 +00:00
parent 1c26e6baec
commit 107a1b2a7a

View file

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "tailscale";
# Tailscale uses "git describe" as version numbers. 0.99.1-0 means
# "tag v0.99.1 plus 0 commits", which corresponds to rev="v0.99.1"
# below.
version = "0.99.1-0";
# Tailscale uses "git describe" as version numbers. 0.100.0-153
# means "tag v0.100.0 plus 153 commits", which corresponds to the
# commit hash below.
version = "0.100.0-153";
src = fetchFromGitHub {
owner = "tailscale";
repo = "tailscale";
rev = "v0.99.1";
sha256 = "1kq4x5xknv0qq6n78xj5wjbf6svbdyw4nzs7z5gjb3ylj2vl97pb";
rev = "v${version}";
sha256 = "1alvsbkpmkra26imhr2927jqwqxcp9id6y8l9mgxhyh3z7qzql8w";
};
nativeBuildInputs = [ makeWrapper ];
@ -19,7 +19,7 @@ buildGoModule rec {
CGO_ENABLED = 0;
goPackagePath = "tailscale.com";
vendorSha256 = "0yf2zdpd12w4qf4sbv7bkr40hw5faqynr6lb84v7w6v0az0nfzds";
vendorSha256 = "0xp8dq3bsaipn9hyp3daqljj3k7zrkbbyk9jph0x59qwpljl0nhz";
subPackages = [ "cmd/tailscale" "cmd/tailscaled" ];
postInstall = ''