2022-06-08 18:46:35 +03:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2018-12-28 11:43:55 +03:00
|
|
|
|
2022-06-08 18:46:35 +03:00
|
|
|
buildGoModule rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "nginx-sso";
|
2023-12-20 13:07:01 +03:00
|
|
|
version = "0.27.3";
|
2018-12-28 11:43:55 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Luzifer";
|
|
|
|
repo = "nginx-sso";
|
2022-06-08 18:46:35 +03:00
|
|
|
rev = "v${version}";
|
2023-12-20 13:07:01 +03:00
|
|
|
hash = "sha256-8ZfNHjf5sbcBasu3o3AHCL0tGROixdNZkDF9yd/uPbs=";
|
2018-12-28 11:43:55 +03:00
|
|
|
};
|
|
|
|
|
2023-12-20 13:07:01 +03:00
|
|
|
vendorHash = "sha256-bquK6/xT+xhEGBDeNN3U1qwSxrHWQhdHNuw9RXoqM+8=";
|
2022-06-08 18:46:35 +03:00
|
|
|
|
2018-12-28 11:43:55 +03:00
|
|
|
postInstall = ''
|
2020-04-28 04:50:57 +03:00
|
|
|
mkdir -p $out/share
|
|
|
|
cp -R $src/frontend $out/share
|
2018-12-28 11:43:55 +03:00
|
|
|
'';
|
|
|
|
|
2020-06-23 01:42:00 +03:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) nginx-sso;
|
|
|
|
};
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2018-12-28 11:43:55 +03:00
|
|
|
description = "SSO authentication provider for the auth_request nginx module";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://github.com/Luzifer/nginx-sso";
|
2018-12-28 11:43:55 +03:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ delroth ];
|
2023-08-04 13:32:10 +03:00
|
|
|
mainProgram = "nginx-sso";
|
2018-12-28 11:43:55 +03:00
|
|
|
};
|
|
|
|
}
|