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";
2020-04-08 08:59:01 +00:00
version = "0.24.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";
2020-04-08 08:59:01 +00:00
sha256 = "1wij0a5ban2l6ahfra4n4dji7i5ndkqk1mgrblwm2ski7bl8yszx";
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;
};
}