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