keycloak: add keycloak.plugins

This commit is contained in:
Maciej Krüger 2021-10-03 20:08:59 +02:00
parent a61cf20944
commit d8110b0e75
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,4 @@
{ callPackage }:
{
}

View File

@ -1,5 +1,6 @@
{ stdenv, lib, fetchzip, makeWrapper, jre, writeText, nixosTests
, postgresql_jdbc ? null, mysql_jdbc ? null
, callPackage
}:
let
@ -55,7 +56,10 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/jboss-cli.sh --set JAVA_HOME ${jre}
'';
passthru.tests = nixosTests.keycloak;
passthru = {
tests = nixosTests.keycloak;
plugins = callPackage ./all-plugins.nix {};
};
meta = with lib; {
homepage = "https://www.keycloak.org/";