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
35 lines
933 B
Nix
35 lines
933 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
maven,
|
|
}:
|
|
|
|
maven.buildMavenPackage rec {
|
|
pname = "scim-for-keycloak";
|
|
version = "kc-20-b1"; # When updating also update mvnHash
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Captain-P-Goldfish";
|
|
repo = "scim-for-keycloak";
|
|
rev = version;
|
|
hash = "sha256-kHjCVkcD8C0tIaMExDlyQmcWMhypisR1nyG93laB8WU=";
|
|
};
|
|
|
|
mvnHash = "sha256-cOuJSU57OuP+U7lI+pDD7g9HPIfZAoDPYLf+eO+XuF4=";
|
|
|
|
installPhase = ''
|
|
install -D "scim-for-keycloak-server/target/scim-for-keycloak-${version}.jar" "$out/scim-for-keycloak-${version}.jar"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Captain-P-Goldfish/scim-for-keycloak";
|
|
description = "Third party module that extends Keycloak with SCIM functionality";
|
|
sourceProvenance = with sourceTypes; [
|
|
fromSource
|
|
binaryBytecode # dependencies
|
|
];
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
};
|
|
}
|