nixpkgs/pkgs/servers/oauth2-proxy/default.nix

26 lines
750 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "oauth2-proxy";
2021-12-25 13:41:43 +00:00
version = "7.2.1";
2018-04-12 16:47:00 +01:00
src = fetchFromGitHub {
repo = pname;
owner = "oauth2-proxy";
2021-12-25 13:41:43 +00:00
sha256 = "sha256-8hYsyHq0iyWzY/HHE4JWBtlaRcSTyM6BdAPcByThme8=";
rev = "v${version}";
};
2021-12-25 13:41:43 +00:00
vendorSha256 = "sha256-bmF38dj+ovVlSbTtv2TSXGLe/W1R4NUbeDrpgGlfPf4=";
2018-04-12 16:47:00 +01:00
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
2021-08-26 07:45:51 +01:00
ldflags = [ "-X main.VERSION=${version}" ];
2018-04-12 16:47:00 +01:00
meta = with lib; {
description = "A reverse proxy that provides authentication with Google, Github, or other providers";
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
2018-04-12 16:47:00 +01:00
license = licenses.mit;
maintainers = teams.serokell.members;
2018-04-12 16:47:00 +01:00
};
}