infra/overlays/keycloak.nix
teutat3s 4de835127f
All checks were successful
Flake checks / Check (pull_request) Successful in 14m47s
fix(keycloak): NullPointerException
Use nightly to fix Cannot invoke "org.keycloak.models.RealmModel.getClientScopesStream()" because "realm" is null

Until 23.0.2 is out

https://github.com/keycloak/keycloak/pull/25313

https://github.com/keycloak/keycloak/issues/25176
https://github.com/keycloak/keycloak/issues/25183
2023-12-14 01:53:29 +01:00

10 lines
318 B
Nix

final: prev: {
keycloak = prev.keycloak.overrideAttrs (oldAttrs: rec {
version = "999.0.0-SNAPSHOT";
src = prev.fetchzip {
url = "https://github.com/keycloak/keycloak/releases/download/nightly/keycloak-${version}.zip";
hash = "sha256-2rOhBmPXQy6HK3CtG/7E2EUK5zEWrJtSgBg6AMw2q3E=";
};
});
}