2020-07-18 16:06:22 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "oauth2-proxy";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "7.6.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = pname;
|
2020-08-20 17:08:02 +00:00
|
|
|
owner = "oauth2-proxy";
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-7DmeXl/aDVFdwUiuljM79CttgjzdTVsSeAYrETuJG0M=";
|
2020-04-24 23:36:52 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
};
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
vendorHash = "sha256-ihFNFtfiCGGyJqB2o4SMYleKdjGR4P5JewkynOsC1f0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [ "-X main.VERSION=${version}" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Reverse proxy that provides authentication with Google, Github, or other providers";
|
2020-07-18 16:06:22 +00:00
|
|
|
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2021-07-03 03:11:41 +00:00
|
|
|
maintainers = teams.serokell.members;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "oauth2-proxy";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|