2019-06-16 12:59:06 -07:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 04:25:34 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-04-25 14:32:54 -07:00
|
|
|
pname = "oauth2_proxy";
|
2020-02-11 06:13:34 -08:00
|
|
|
version = "5.1.0";
|
|
|
|
|
2019-04-25 14:32:54 -07:00
|
|
|
goPackagePath = "github.com/pusher/${pname}";
|
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
|
|
|
};
|
|
|
|
|
2016-09-10 03:04:13 -07:00
|
|
|
goDeps = ./deps.nix;
|
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-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/pusher/oauth2_proxy/";
|
2018-04-12 08:47:00 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.yorickvp ];
|
|
|
|
};
|
2016-06-04 04:25:34 -07:00
|
|
|
}
|