Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildGoModule, 3 authentik, 4 vendorHash, 5}: 6 7buildGoModule { 8 pname = "authentik-proxy-outpost"; 9 inherit (authentik) version src; 10 inherit vendorHash; 11 12 env.CGO_ENABLED = 0; 13 14 subPackages = [ "cmd/proxy" ]; 15 16 meta = authentik.meta // { 17 description = "Authentik proxy outpost which is used for HTTP reverse proxy authentication"; 18 homepage = "https://goauthentik.io/docs/providers/proxy/"; 19 mainProgram = "proxy"; 20 }; 21}