2022-06-16 17:23:12 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "nginx-sso";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "0.27.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Luzifer";
|
|
|
|
repo = "nginx-sso";
|
2022-06-16 17:23:12 +00:00
|
|
|
rev = "v${version}";
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-8ZfNHjf5sbcBasu3o3AHCL0tGROixdNZkDF9yd/uPbs=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
vendorHash = "sha256-bquK6/xT+xhEGBDeNN3U1qwSxrHWQhdHNuw9RXoqM+8=";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
postInstall = ''
|
2020-05-15 21:57:56 +00:00
|
|
|
mkdir -p $out/share
|
|
|
|
cp -R $src/frontend $out/share
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) nginx-sso;
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "SSO authentication provider for the auth_request nginx module";
|
|
|
|
homepage = "https://github.com/Luzifer/nginx-sso";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ delroth ];
|
2023-08-04 22:07:22 +00:00
|
|
|
mainProgram = "nginx-sso";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|