30 lines
729 B
Nix
30 lines
729 B
Nix
{ buildGoPackage, fetchFromGitHub, stdenv }:
|
|
|
|
buildGoPackage rec {
|
|
name = "nginx-sso-${version}";
|
|
version = "0.16.1";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/Luzifer/nginx-sso";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "Luzifer";
|
|
repo = "nginx-sso";
|
|
sha256 = "100k5dxrwj5xa1yh79qmyv6jampijqjbr4vkn1d9avim352yhnk1";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p $bin/share
|
|
cp -R $src/frontend $bin/share
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "SSO authentication provider for the auth_request nginx module";
|
|
homepage = https://github.com/Luzifer/nginx-sso;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ delroth ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|