From 7de796ec0a4b197483513f518e65802c80058608 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Dec 2021 01:31:36 +0000 Subject: [PATCH] vouch-proxy: 0.35.1 -> 0.36.0 - Restrict platforms to linux for now, as tests fail on macOS. - Add erictapen as maintainer --- pkgs/servers/vouch-proxy/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/vouch-proxy/default.nix b/pkgs/servers/vouch-proxy/default.nix index 94ef0b23f3b..a8a773385db 100644 --- a/pkgs/servers/vouch-proxy/default.nix +++ b/pkgs/servers/vouch-proxy/default.nix @@ -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; }; }