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

26 lines
765 B
Nix
Raw Permalink Normal View History

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