Merge pull request 'fix(keycloak): NullPointerException' (#82) from fix/keycloak-needs-nightly into main

Reviewed-on: pub-solar/infra#82
Reviewed-by: b12f <b12f@noreply.git.pub.solar>
This commit is contained in:
teutat3s 2023-12-14 17:08:08 +00:00
commit c48a405e44
Signed by: pub.solar gitea
GPG key ID: F0332B04B7054873
2 changed files with 10 additions and 0 deletions

View file

@ -17,6 +17,7 @@
element-themes = prev.callPackage ./pkgs/element-themes { inherit (inputs) element-themes; }; element-themes = prev.callPackage ./pkgs/element-themes { inherit (inputs) element-themes; };
forgejo = release-2311.forgejo; forgejo = release-2311.forgejo;
}) })
(import ./keycloak.nix)
]; ];
}); });
}; };

9
overlays/keycloak.nix Normal file
View file

@ -0,0 +1,9 @@
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=";
};
});
}