Merge pull request #91320 from nyanloutre/nginx_sso_0_25_0

nginx-sso: 0.24.1 -> 0.25.0
This commit is contained in:
Mario Rodas 2020-06-23 07:17:03 -05:00 committed by GitHub
commit b54b5d7998
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,8 @@
{ buildGoPackage, fetchFromGitHub, stdenv }:
{ buildGoPackage, fetchFromGitHub, stdenv, nixosTests }:
buildGoPackage rec {
pname = "nginx-sso";
version = "0.24.1";
version = "0.25.0";
rev = "v${version}";
goPackagePath = "github.com/Luzifer/nginx-sso";
@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "Luzifer";
repo = "nginx-sso";
sha256 = "1wij0a5ban2l6ahfra4n4dji7i5ndkqk1mgrblwm2ski7bl8yszx";
sha256 = "0z5h92rpr1rcfk11ggsb9w4ipg93fcb9byll7vl4c0mfcqkpm2dr";
};
postInstall = ''
@ -19,6 +19,10 @@ buildGoPackage rec {
cp -R $src/frontend $out/share
'';
passthru.tests = {
inherit (nixosTests) nginx-sso;
};
meta = with stdenv.lib; {
description = "SSO authentication provider for the auth_request nginx module";
homepage = "https://github.com/Luzifer/nginx-sso";