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";
|
2021-02-16 17:04:54 +00:00
|
|
|
version = "7.0.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = pname;
|
2020-08-20 17:08:02 +00:00
|
|
|
owner = "oauth2-proxy";
|
2021-02-16 17:04:54 +00:00
|
|
|
sha256 = "sha256-PvoCR+JYaQeHlnO6H75LcY7Lszi1nNNe6SCd3sJJ6R4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
};
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
vendorSha256 = "sha256-kclpoZ33JOciP2IUCQZB5idA7rgbWxPPFNwZU+pEJFU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
|
|
|
|
buildFlagsArray = ("-ldflags=-X main.VERSION=${version}");
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A 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;
|
|
|
|
maintainers = with maintainers; [ yorickvp knl ];
|
|
|
|
};
|
|
|
|
}
|