diff --git a/packages/simplesamlphptheme/default.nix b/packages/simplesamlphptheme/default.nix index 90415fb..7c3b24a 100644 --- a/packages/simplesamlphptheme/default.nix +++ b/packages/simplesamlphptheme/default.nix @@ -1,38 +1,22 @@ { lib , php , writeText -, fetchFromGitHub +, fetchFromGitea , extra_files ? { } }: -php.buildComposerProject rec { - pname = "simplesamlphp"; - version = "2.4.3"; - src = fetchFromGitHub { - owner = "simplesamlphp"; - repo = "simplesamlphp"; - tag = "v${version}"; - hash = "sha256-vv4gzcnPfMapd8gER2Vsng1SBloHKWrJJltnw2HUnX4="; +stdenv.mkDerivation { + pname = "ssp-theme"; + version = "v1.2026"; + + src = fetchFromGitea { + owner = "drift"; + repo = "ssp-theme"; + rev = "master"; + sha256 = "source-hash"; + domain = "git.pvv.ntnu.no"; }; - composerStrictValidation = false; - - vendorHash = "sha256-vu3Iz6fRk3Gnh9Psn46jgRYKkmqGte+5xHBRmvdgKG4="; - - # TODO: metadata could be fetched automagically with these: - # - https://simplesamlphp.org/docs/contrib_modules/metarefresh/simplesamlphp-automated_metadata.html - # - https://idp.pvv.ntnu.no/simplesaml/saml2/idp/metadata.php - postPatch = lib.pipe extra_files [ - (lib.mapAttrsToList (target_path: source_path: '' - mkdir -p $(dirname "${target_path}") - cp -r "${source_path}" "${target_path}" - '')) - lib.concatLines - ]; - - postInstall = '' - ln -sr $out/share/php/simplesamlphp/vendor/simplesamlphp/simplesamlphp-assets-base $out/share/php/simplesamlphp/public/assets/base - ''; }