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
80 lines
1.9 KiB
Nix
80 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchYarnDeps,
|
|
yarnConfigHook,
|
|
yarnBuildHook,
|
|
nodejs,
|
|
nix-update-script,
|
|
writers,
|
|
baseUrl ? null,
|
|
}:
|
|
|
|
assert lib.asserts.assertMsg (
|
|
baseUrl == null
|
|
) "The baseUrl parameter is deprecated, please use .withConfig instead";
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "synapse-admin-etkecc";
|
|
version = "0.11.1-etke48";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "etkecc";
|
|
repo = "synapse-admin";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-1bxkC91OPXPjwPgbjRlCvUth/Q7w7O4WeW3vYaGmo5A=";
|
|
};
|
|
|
|
yarnOfflineCache = fetchYarnDeps {
|
|
yarnLock = finalAttrs.src + "/yarn.lock";
|
|
hash = "sha256-Vv/keQXNBxBDgKXNBHLFuNDNHEnEWJuFa/pU+ejpDCY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
nodejs
|
|
yarnConfigHook
|
|
yarnBuildHook
|
|
];
|
|
|
|
env = {
|
|
NODE_ENV = "production";
|
|
SYNAPSE_ADMIN_VERSION = finalAttrs.version;
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
cp -r dist $out
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
# https://github.com/etkecc/synapse-admin/blob/main/docs/config.md
|
|
withConfig =
|
|
config:
|
|
stdenv.mkDerivation {
|
|
inherit (finalAttrs) version meta;
|
|
pname = "synapse-admin-etkecc-with-config";
|
|
dontUnpack = true;
|
|
configFile = writers.writeJSON "synapse-admin-config" config;
|
|
installPhase = ''
|
|
runHook preInstall
|
|
cp -r ${finalAttrs.finalPackage} $out
|
|
chmod -R +w $out
|
|
cp $configFile $out/config.json
|
|
runHook postInstall
|
|
'';
|
|
};
|
|
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Maintained fork of the admin console for (Matrix) Synapse homeservers, including additional features";
|
|
homepage = "https://github.com/etkecc/synapse-admin";
|
|
changelog = "https://github.com/etkecc/synapse-admin/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ defelo ];
|
|
};
|
|
})
|