2020-06-18 13:52:03 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2016-06-04 12:25:34 +01:00
|
|
|
|
2020-06-18 13:52:03 +01:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "oauth2-proxy";
|
2021-12-25 13:41:43 +00:00
|
|
|
version = "7.2.1";
|
2016-06-04 12:25:34 +01:00
|
|
|
|
2018-04-12 16:47:00 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-04-25 22:32:54 +01:00
|
|
|
repo = pname;
|
2020-07-20 06:08:33 +01:00
|
|
|
owner = "oauth2-proxy";
|
2021-12-25 13:41:43 +00:00
|
|
|
sha256 = "sha256-8hYsyHq0iyWzY/HHE4JWBtlaRcSTyM6BdAPcByThme8=";
|
2019-04-25 22:32:54 +01:00
|
|
|
rev = "v${version}";
|
2016-06-04 12:25:34 +01:00
|
|
|
};
|
|
|
|
|
2021-12-25 13:41:43 +00:00
|
|
|
vendorSha256 = "sha256-bmF38dj+ovVlSbTtv2TSXGLe/W1R4NUbeDrpgGlfPf4=";
|
2018-04-12 16:47:00 +01:00
|
|
|
|
2020-02-11 14:13:34 +00:00
|
|
|
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [ "-X main.VERSION=${version}" ];
|
2020-02-11 14:13:34 +00:00
|
|
|
|
2018-04-12 16:47:00 +01: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 13:52:03 +01:00
|
|
|
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
|
2018-04-12 16:47:00 +01:00
|
|
|
license = licenses.mit;
|
2021-06-30 00:48:02 +01:00
|
|
|
maintainers = teams.serokell.members;
|
2018-04-12 16:47:00 +01:00
|
|
|
};
|
2016-06-04 12:25:34 +01:00
|
|
|
}
|