tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tailscale-nginx-auth: move back to buildGoModule
06kellyjac
11 months ago
a0ec8cf1
b10b8846
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ta
tailscale-nginx-auth
package.nix
+5
-5
pkgs/by-name/ta/tailscale-nginx-auth/package.nix
···
1
1
{
2
2
lib,
3
3
stdenv,
4
4
-
buildGo123Module,
4
4
+
buildGoModule,
5
5
tailscale,
6
6
}:
7
7
8
8
-
buildGo123Module {
8
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
30
-
meta = with lib; {
30
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
33
-
license = licenses.bsd3;
33
33
+
license = lib.licenses.bsd3;
34
34
mainProgram = "tailscale.nginx-auth";
35
35
-
maintainers = with maintainers; [ phaer ];
35
35
+
maintainers = with lib.maintainers; [ phaer ];
36
36
};
37
37
}