tailscale: fix tailscale ssh

Closes #310950
This commit is contained in:
Sandro Jäckel 2024-05-12 23:20:40 +02:00
parent 553dab119b
commit d2eeeb450a
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -2,6 +2,7 @@
, stdenv
, buildGoModule
, fetchFromGitHub
, fetchpatch
, makeWrapper
, getent
, iproute2
@ -24,6 +25,16 @@ buildGoModule {
rev = "v${version}";
hash = "sha256-1Yt8W/UanAghaElGiD+z7BKeV/Ge+OElA+B9yBnu3vw=";
};
patches = [
# Fix "tailscale ssh" when built with ts_include_cli tag
# https://github.com/tailscale/tailscale/pull/12109
(fetchpatch {
url = "https://github.com/tailscale/tailscale/commit/325ca13c4549c1af58273330744d160602218af9.patch";
hash = "sha256-SMwqZiGNVflhPShlHP+7Gmn0v4b6Gr4VZGIF/oJAY8M=";
})
];
vendorHash = "sha256-Hd77xy8stw0Y6sfk3/ItqRIbM/349M/4uf0iNy1xJGw=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];