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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
750 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "oauth2-proxy";
2022-10-30 05:21:04 +03:00
version = "7.4.0";
2018-04-12 18:47:00 +03:00
src = fetchFromGitHub {
repo = pname;
owner = "oauth2-proxy";
2022-10-30 05:21:04 +03:00
sha256 = "sha256-/PoMi09j9ADDnaB7E/zU1AFiYpO+ZScFszN1E9OM0TM=";
rev = "v${version}";
};
2022-10-30 05:21:04 +03:00
vendorSha256 = "sha256-2WUd2RxeOal0lpp/TuGSyfP1ppvG/Vd3bgsSsNO8ejo=";
2018-04-12 18:47:00 +03:00
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
2021-08-26 09:45:51 +03:00
ldflags = [ "-X main.VERSION=${version}" ];
2018-04-12 18:47:00 +03: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 18:47:00 +03:00
license = licenses.mit;
maintainers = teams.serokell.members;
2018-04-12 18:47:00 +03:00
};
}