vouch-proxy: 0.35.1 -> 0.36.0

- Restrict platforms to linux for now, as tests fail on macOS.
- Add erictapen as maintainer
This commit is contained in:
R. Ryantm 2021-12-22 01:31:36 +00:00 committed by Kerstin
parent 57ac6e42e2
commit 7de796ec0a

View file

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "vouch-proxy";
version = "0.35.1";
version = "0.36.0";
src = fetchFromGitHub {
owner = "vouch";
repo = "vouch-proxy";
rev = "v${version}";
sha256 = "sha256-dKf68WjCynB73RBWneBsMoyowUcrEaBTnMKVKB0sgsg=";
sha256 = "sha256-pgoxRzYc5PIrxnRwWpthFmpsxDfvWTmLT7upQVIFoQo=";
};
vendorSha256 = "sha256-ifH+420FIrib+zQtzzHtMMYd84BED+vgnRw4xToYIl4=";
@ -26,6 +26,7 @@ buildGoModule rec {
homepage = "https://github.com/vouch/vouch-proxy";
description = "An SSO and OAuth / OIDC login solution for NGINX using the auth_request module";
license = licenses.mit;
maintainers = with maintainers; [ em0lar ];
maintainers = with maintainers; [ em0lar erictapen ];
platforms = lib.platforms.linux;
};
}