tailscale: use buildGo121Module

Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
This commit is contained in:
Muhammad Falak R Wani 2023-08-23 06:43:48 +05:30
parent 069c21c203
commit 4cb26e2c47
No known key found for this signature in database
GPG key ID: D323A5E0174C86DD
2 changed files with 5 additions and 3 deletions

View file

@ -1,9 +1,9 @@
{ lib, stdenv, buildGo121Module, fetchFromGitHub, makeWrapper, iptables, iproute2, procps, shadow, getent }:
{ lib, stdenv, buildGoModule, fetchFromGitHub, makeWrapper, iptables, iproute2, procps, shadow, getent }:
let
version = "1.48.1";
in
buildGo121Module {
buildGoModule {
pname = "tailscale";
inherit version;

View file

@ -27394,7 +27394,9 @@ with pkgs;
systemd-journal2gelf = callPackage ../tools/system/systemd-journal2gelf { };
tailscale = callPackage ../servers/tailscale { };
tailscale = callPackage ../servers/tailscale {
buildGoModule = buildGo121Module;
};
tailscale-systray = callPackage ../applications/misc/tailscale-systray { };