2020-06-18 05:52:03 -07:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2016-06-04 04:25:34 -07:00
|
|
|
|
2020-06-18 05:52:03 -07:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "oauth2-proxy";
|
|
|
|
version = "5.1.1";
|
2016-06-04 04:25:34 -07:00
|
|
|
|
2018-04-12 08:47:00 -07:00
|
|
|
src = fetchFromGitHub {
|
2019-04-25 14:32:54 -07:00
|
|
|
repo = pname;
|
|
|
|
owner = "pusher";
|
2020-02-11 06:13:34 -08:00
|
|
|
sha256 = "190k1v2c1f6vp9waqs01rlzm0jc3vrmsq1w1n0c2q2nfqx76y2wz";
|
2019-04-25 14:32:54 -07:00
|
|
|
rev = "v${version}";
|
2016-06-04 04:25:34 -07:00
|
|
|
};
|
|
|
|
|
2020-06-18 05:52:03 -07:00
|
|
|
vendorSha256 = "01lf7xbhgn5l42ahym12vr1w00zx1qzy6sgwgcbvvxp48k0b271d";
|
2018-04-12 08:47:00 -07:00
|
|
|
|
2020-04-09 05:18:38 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2020-02-11 06:13:34 -08:00
|
|
|
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
|
|
|
|
buildFlagsArray = ("-ldflags=-X main.VERSION=${version}");
|
|
|
|
|
2018-04-12 08:47:00 -07:00
|
|
|
meta = with lib; {
|
2020-02-11 06:13:34 -08:00
|
|
|
description = "A reverse proxy that provides authentication with Google, Github, or other providers";
|
2020-06-18 05:52:03 -07:00
|
|
|
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
|
2018-04-12 08:47:00 -07:00
|
|
|
license = licenses.mit;
|
2020-04-13 14:01:02 -07:00
|
|
|
maintainers = with maintainers; [ yorickvp knl ];
|
2018-04-12 08:47:00 -07:00
|
|
|
};
|
2016-06-04 04:25:34 -07:00
|
|
|
}
|