tailscale-nginx-auth: move back to buildGoModule

06kellyjac a0ec8cf1 b10b8846

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