From 99f6c0b130dd37673ebc94901db2db19d9a4655a Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 9 Jul 2023 15:48:36 +0900 Subject: chore(flake): bump --- overlays/mjolnir-package/default.nix | 80 ------------------------------------ 1 file changed, 80 deletions(-) delete mode 100644 overlays/mjolnir-package/default.nix (limited to 'overlays/mjolnir-package/default.nix') diff --git a/overlays/mjolnir-package/default.nix b/overlays/mjolnir-package/default.nix deleted file mode 100644 index 833124b..0000000 --- a/overlays/mjolnir-package/default.nix +++ /dev/null @@ -1,80 +0,0 @@ -{ lib -, nixosTests -, mkYarnPackage -, fetchYarnDeps -, fetchFromGitHub -, makeWrapper -, nodejs -, pkgs -, matrix-sdk-crypto-nodejs -}: - -let - pin = lib.importJSON ./pin.json; -in -mkYarnPackage rec { - pname = "mjolnir"; - inherit (pin) version; - - src = fetchFromGitHub { - owner = "matrix-org"; - repo = "mjolnir"; - rev = "v${version}"; - sha256 = pin.srcSha256; - }; - - packageJSON = ./package.json; - offlineCache = fetchYarnDeps { - yarnLock = "${src}/yarn.lock"; - sha256 = pin.yarnSha256; - }; - - packageResolutions = { - "@matrix-org/matrix-sdk-crypto-nodejs" = "${matrix-sdk-crypto-nodejs}/lib/node_modules/@matrix-org/matrix-sdk-crypto-nodejs"; - }; - - nativeBuildInputs = [ - makeWrapper - ]; - - buildPhase = '' - runHook preBuild - yarn --offline build - runHook postBuild - ''; - - postInstall = '' - makeWrapper ${nodejs}/bin/node $out/bin/mjolnir \ - --add-flags $out/libexec/mjolnir/deps/mjolnir/lib/index.js - ''; - - doDist = false; - - passthru = { - tests = { - inherit (nixosTests) mjolnir; - }; - updateScript = ./update.sh; - }; - - meta = with lib; { - description = "A moderation tool for Matrix"; - homepage = "https://github.com/matrix-org/mjolnir"; - longDescription = '' - As an all-in-one moderation tool, it can protect your server from - malicious invites, spam messages, and whatever else you don't want. - In addition to server-level protection, Mjolnir is great for communities - wanting to protect their rooms without having to use their personal - accounts for moderation. - - The bot by default includes support for bans, redactions, anti-spam, - server ACLs, room directory changes, room alias transfers, account - deactivation, room shutdown, and more. - - A Synapse module is also available to apply the same rulesets the bot - uses across an entire homeserver. - ''; - license = licenses.asl20; - maintainers = with maintainers; [ jojosch ]; - }; -} -- cgit 1.4.1