nixpkgs/pkgs/by-name/ng/nginx-sso/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
796 B
Nix
Raw Normal View History

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 {
pname = "nginx-sso";
2024-12-12 13:38:01 +00:00
version = "0.27.4";
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}";
2024-12-12 13:38:01 +00:00
hash = "sha256-fNMCskS8uXAykl2Zu4ZZqtIS2F5w7HV7C8hyPaWnav4=";
2018-12-28 08:43:55 +00:00
};
2024-12-12 13:38:01 +00:00
vendorHash = "sha256-J3CObmSbrAn0D5MOaclRvlnqLqUYfQCkfD6om/tNKac=";
2022-06-08 15:46:35 +00:00
2018-12-28 08:43:55 +00:00
postInstall = ''
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;
};
meta = with lib; {
2018-12-28 08:43:55 +00:00
description = "SSO authentication provider for the auth_request nginx module";
homepage = "https://github.com/Luzifer/nginx-sso";
2018-12-28 08:43:55 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ ambroisie ];
mainProgram = "nginx-sso";
2018-12-28 08:43:55 +00:00
};
}