tailscale-nginx-auth: move back to buildGoModule

06kellyjac a0ec8cf1 b10b8846

+5 -5
+5 -5
pkgs/by-name/ta/tailscale-nginx-auth/package.nix
··· 1 { 2 lib, 3 stdenv, 4 - buildGo123Module, 5 tailscale, 6 }: 7 8 - buildGo123Module { 9 pname = "tailscale-nginx-auth"; 10 inherit (tailscale) version src vendorHash; 11 ··· 27 install -D -m0444 -t $out/lib/systemd/system ./cmd/nginx-auth/tailscale.nginx-auth.socket 28 ''; 29 30 - meta = with lib; { 31 homepage = "https://tailscale.com"; 32 description = "Tool that allows users to use Tailscale Whois authentication with NGINX as a reverse proxy"; 33 - license = licenses.bsd3; 34 mainProgram = "tailscale.nginx-auth"; 35 - maintainers = with maintainers; [ phaer ]; 36 }; 37 }
··· 1 { 2 lib, 3 stdenv, 4 + buildGoModule, 5 tailscale, 6 }: 7 8 + buildGoModule { 9 pname = "tailscale-nginx-auth"; 10 inherit (tailscale) version src vendorHash; 11 ··· 27 install -D -m0444 -t $out/lib/systemd/system ./cmd/nginx-auth/tailscale.nginx-auth.socket 28 ''; 29 30 + meta = { 31 homepage = "https://tailscale.com"; 32 description = "Tool that allows users to use Tailscale Whois authentication with NGINX as a reverse proxy"; 33 + license = lib.licenses.bsd3; 34 mainProgram = "tailscale.nginx-auth"; 35 + maintainers = with lib.maintainers; [ phaer ]; 36 }; 37 }