keycloak: add ifsr theme

This commit is contained in:
Rouven Seifert 2024-08-31 22:15:42 +02:00
parent c4d2b5fd08
commit 0d0512a539
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
7 changed files with 832 additions and 1 deletions

View file

@ -0,0 +1,15 @@
{ stdenv }:
stdenv.mkDerivation rec {
name = "keycloak_ifsr_theme";
version = "1.1";
src = ./theme;
nativeBuildInputs = [ ];
buildInputs = [ ];
installPhase = ''
mkdir -p $out
cp -a login $out
'';
}