2019-06-16 20:59:06 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 12:25:34 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-04-25 22:32:54 +01:00
|
|
|
pname = "oauth2_proxy";
|
2020-02-11 14:13:34 +00:00
|
|
|
version = "5.1.0";
|
|
|
|
|
2019-04-25 22:32:54 +01:00
|
|
|
goPackagePath = "github.com/pusher/${pname}";
|
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;
|
|
|
|
owner = "pusher";
|
2020-02-11 14:13:34 +00:00
|
|
|
sha256 = "190k1v2c1f6vp9waqs01rlzm0jc3vrmsq1w1n0c2q2nfqx76y2wz";
|
2019-04-25 22:32:54 +01:00
|
|
|
rev = "v${version}";
|
2016-06-04 12:25:34 +01:00
|
|
|
};
|
|
|
|
|
2016-09-10 11:04:13 +01:00
|
|
|
goDeps = ./deps.nix;
|
2018-04-12 16:47:00 +01:00
|
|
|
|
2020-04-09 13:18:38 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2020-02-11 14:13:34 +00:00
|
|
|
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
|
|
|
|
buildFlagsArray = ("-ldflags=-X main.VERSION=${version}");
|
|
|
|
|
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-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pusher/oauth2_proxy/";
|
2018-04-12 16:47:00 +01:00
|
|
|
license = licenses.mit;
|
2020-04-13 22:01:02 +01:00
|
|
|
maintainers = with maintainers; [ yorickvp knl ];
|
2018-04-12 16:47:00 +01:00
|
|
|
};
|
2016-06-04 12:25:34 +01:00
|
|
|
}
|