nginx-sso: init at 0.15.1

This commit is contained in:
Pierre Bourdon 2018-12-28 09:43:55 +01:00
parent c1a44bd0db
commit aa000aa3a0
No known key found for this signature in database
GPG key ID: 6FB80DCD84DA0F1C
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ buildGoPackage, fetchFromGitHub, stdenv }:
buildGoPackage rec {
name = "nginx-sso-${version}";
version = "0.15.1";
rev = "v${version}";
goPackagePath = "github.com/Luzifer/nginx-sso";
src = fetchFromGitHub {
inherit rev;
owner = "Luzifer";
repo = "nginx-sso";
sha256 = "0mm6yhm22wf32yl9wvl8fy9m5jjd491khyy4cl73fn381h3n5qi2";
};
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;
};
}

View file

@ -13742,6 +13742,8 @@ in
inherit (darwin.apple_sdk.frameworks) Security;
};
nginx-sso = callPackage ../servers/nginx-sso { };
percona-server56 = callPackage ../servers/sql/percona/5.6.x.nix { };
percona-server = percona-server56;