1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/vouch-proxy/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

39 lines
901 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "vouch-proxy";
version = "0.40.0";
src = fetchFromGitHub {
owner = "vouch";
repo = "vouch-proxy";
rev = "refs/tags/v${version}";
hash = "sha256-/B7MMRkI5DhDBWa53mgFUME1CR3FSxxQ8UWjlN19EmQ=";
};
vendorHash = "sha256-1k9YFdackF10iJWJ22XlaENlOfRkZMs+IedDWnd/h8E=";
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
preCheck = ''
export VOUCH_ROOT=$PWD
'';
meta = with lib; {
homepage = "https://github.com/vouch/vouch-proxy";
description = "SSO and OAuth / OIDC login solution for NGINX using the auth_request module";
changelog = "https://github.com/vouch/vouch-proxy/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ leona erictapen ];
platforms = platforms.linux;
mainProgram = "vouch-proxy";
};
}