mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
nginx-sso: init at 0.15.1
This commit is contained in:
parent
c1a44bd0db
commit
aa000aa3a0
29
pkgs/servers/nginx-sso/default.nix
Normal file
29
pkgs/servers/nginx-sso/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user