nixpkgs/pkgs/servers/nginx-sso/default.nix

30 lines
719 B
Nix
Raw Normal View History

2018-12-28 08:43:55 +00:00
{ buildGoPackage, fetchFromGitHub, stdenv }:
buildGoPackage rec {
pname = "nginx-sso";
2019-03-17 21:33:28 +00:00
version = "0.16.1";
2018-12-28 08:43:55 +00:00
rev = "v${version}";
goPackagePath = "github.com/Luzifer/nginx-sso";
src = fetchFromGitHub {
inherit rev;
owner = "Luzifer";
repo = "nginx-sso";
2019-03-17 21:33:28 +00:00
sha256 = "100k5dxrwj5xa1yh79qmyv6jampijqjbr4vkn1d9avim352yhnk1";
2018-12-28 08:43:55 +00:00
};
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;
};
}