nixpkgs/pkgs/servers/oauth2-proxy/default.nix
Nikola Knežević c50de910d1
Remove knl as maintainer for oauth2_proxy (#128483)
Co-authored-by: fortune <lythe1107@gmail.com>
Co-authored-by: Nikola Knezevic <nikola.knezevic@imc.com>
2021-06-30 01:48:02 +02:00

26 lines
765 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "oauth2-proxy";
version = "7.0.1";
src = fetchFromGitHub {
repo = pname;
owner = "oauth2-proxy";
sha256 = "sha256-PvoCR+JYaQeHlnO6H75LcY7Lszi1nNNe6SCd3sJJ6R4=";
rev = "v${version}";
};
vendorSha256 = "sha256-kclpoZ33JOciP2IUCQZB5idA7rgbWxPPFNwZU+pEJFU=";
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
buildFlagsArray = ("-ldflags=-X main.VERSION=${version}");
meta = with lib; {
description = "A reverse proxy that provides authentication with Google, Github, or other providers";
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
license = licenses.mit;
maintainers = teams.serokell.members;
};
}