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

34 lines
786 B
Nix
Raw Permalink Normal View History

{ buildGoPackage, fetchFromGitHub, lib, nixosTests }:
2018-12-28 08:43:55 +00:00
buildGoPackage rec {
pname = "nginx-sso";
2020-06-22 21:25:37 +00:00
version = "0.25.0";
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-06-22 21:25:37 +00:00
sha256 = "0z5h92rpr1rcfk11ggsb9w4ipg93fcb9byll7vl4c0mfcqkpm2dr";
2018-12-28 08:43:55 +00:00
};
postInstall = ''
mkdir -p $out/share
cp -R $src/frontend $out/share
2018-12-28 08:43:55 +00:00
'';
2020-06-22 22:42:00 +00:00
passthru.tests = {
inherit (nixosTests) nginx-sso;
};
meta = with lib; {
2018-12-28 08:43:55 +00:00
description = "SSO authentication provider for the auth_request nginx module";
homepage = "https://github.com/Luzifer/nginx-sso";
2018-12-28 08:43:55 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ delroth ];
platforms = platforms.unix;
};
}