2020-06-18 12:52:03 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2016-06-04 11:25:34 +00:00
|
|
|
|
2020-06-18 12:52:03 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "oauth2-proxy";
|
2022-07-29 13:53:10 +00:00
|
|
|
version = "7.3.0";
|
2016-06-04 11:25:34 +00:00
|
|
|
|
2018-04-12 15:47:00 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-04-25 21:32:54 +00:00
|
|
|
repo = pname;
|
2020-07-20 05:08:33 +00:00
|
|
|
owner = "oauth2-proxy";
|
2022-07-29 13:53:10 +00:00
|
|
|
sha256 = "sha256-GeJRB57CR719Vo1SWk1HYmTR1WEqokMZsUqGO2r0j0Q=";
|
2019-04-25 21:32:54 +00:00
|
|
|
rev = "v${version}";
|
2016-06-04 11:25:34 +00:00
|
|
|
};
|
|
|
|
|
2022-07-29 13:53:10 +00:00
|
|
|
vendorSha256 = "sha256-sFb3hrjG/Msa29LVicaaAS7LYjDfBsq2DhUwyFQRrSs=";
|
2018-04-12 15:47:00 +00:00
|
|
|
|
2020-02-11 14:13:34 +00:00
|
|
|
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = [ "-X main.VERSION=${version}" ];
|
2020-02-11 14:13:34 +00:00
|
|
|
|
2018-04-12 15:47:00 +00:00
|
|
|
meta = with lib; {
|
2020-02-11 14:13:34 +00:00
|
|
|
description = "A reverse proxy that provides authentication with Google, Github, or other providers";
|
2020-06-18 12:52:03 +00:00
|
|
|
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
|
2018-04-12 15:47:00 +00:00
|
|
|
license = licenses.mit;
|
2021-06-29 23:48:02 +00:00
|
|
|
maintainers = teams.serokell.members;
|
2018-04-12 15:47:00 +00:00
|
|
|
};
|
2016-06-04 11:25:34 +00:00
|
|
|
}
|