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

26 lines
794 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "oauth2-proxy";
2021-02-12 16:18:34 -08:00
version = "7.0.1";
2018-04-12 08:47:00 -07:00
src = fetchFromGitHub {
repo = pname;
owner = "oauth2-proxy";
2021-02-12 16:18:34 -08:00
sha256 = "sha256-PvoCR+JYaQeHlnO6H75LcY7Lszi1nNNe6SCd3sJJ6R4=";
rev = "v${version}";
};
2021-02-04 23:10:42 -08:00
vendorSha256 = "sha256-kclpoZ33JOciP2IUCQZB5idA7rgbWxPPFNwZU+pEJFU=";
2018-04-12 08:47:00 -07:00
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
buildFlagsArray = ("-ldflags=-X main.VERSION=${version}");
2018-04-12 08:47:00 -07: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 08:47:00 -07:00
license = licenses.mit;
maintainers = with maintainers; teams.serokell.members ++ [ knl ];
2018-04-12 08:47:00 -07:00
};
}