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

30 lines
721 B
Nix
Raw Normal View History

2018-12-28 09:43:55 +01:00
{ buildGoPackage, fetchFromGitHub, stdenv }:
buildGoPackage rec {
pname = "nginx-sso";
2020-04-08 10:59:01 +02:00
version = "0.24.1";
2018-12-28 09:43:55 +01:00
rev = "v${version}";
goPackagePath = "github.com/Luzifer/nginx-sso";
src = fetchFromGitHub {
inherit rev;
owner = "Luzifer";
repo = "nginx-sso";
2020-04-08 10:59:01 +02:00
sha256 = "1wij0a5ban2l6ahfra4n4dji7i5ndkqk1mgrblwm2ski7bl8yszx";
2018-12-28 09:43:55 +01: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";
2018-12-28 09:43:55 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ delroth ];
platforms = platforms.unix;
};
}