Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
1.1 KiB
Nix
29 lines
1.1 KiB
Nix
{ callPackage, fetchMavenArtifact }:
|
|
|
|
{
|
|
scim-for-keycloak = callPackage ./scim-for-keycloak { };
|
|
scim-keycloak-user-storage-spi = callPackage ./scim-keycloak-user-storage-spi { };
|
|
keycloak-discord = callPackage ./keycloak-discord { };
|
|
keycloak-magic-link = callPackage ./keycloak-magic-link { };
|
|
keycloak-metrics-spi = callPackage ./keycloak-metrics-spi { };
|
|
keycloak-restrict-client-auth = callPackage ./keycloak-restrict-client-auth { };
|
|
|
|
# These could theoretically be used by something other than Keycloak, but
|
|
# there are no other quarkus apps in nixpkgs (as of 2023-08-21)
|
|
quarkus-systemd-notify =
|
|
(fetchMavenArtifact {
|
|
groupId = "io.quarkiverse.systemd.notify";
|
|
artifactId = "quarkus-systemd-notify";
|
|
version = "1.0.1";
|
|
hash = "sha256-3I4j22jyIpokU4kdobkt6cDsALtxYFclA+DV+BqtmLY=";
|
|
}).passthru.jar;
|
|
|
|
quarkus-systemd-notify-deployment =
|
|
(fetchMavenArtifact {
|
|
groupId = "io.quarkiverse.systemd.notify";
|
|
artifactId = "quarkus-systemd-notify-deployment";
|
|
version = "1.0.1";
|
|
hash = "sha256-xHxzBxriSd/OU8gEcDG00VRkJYPYJDfAfPh/FkQe+zg=";
|
|
}).passthru.jar;
|
|
}
|