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
748 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "oauth2-proxy";
2023-09-25 03:20:39 +00:00
version = "7.5.1";
2018-04-12 15:47:00 +00:00
src = fetchFromGitHub {
repo = pname;
owner = "oauth2-proxy";
2023-09-25 03:20:39 +00:00
sha256 = "sha256-zIw30pFf/IxruG3MYwrrLhANBPemLsYdYnPRO+EWNs0=";
rev = "v${version}";
};
2023-09-25 03:20:39 +00:00
vendorHash = "sha256-Z2yPfUkDb07db8T3/1v9onnNloaKEN5tdrMDNIy7QHo=";
2018-04-12 15:47:00 +00:00
# Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
2021-08-26 06:45:51 +00:00
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
};
}