Merge pull request #217258 from SuperSandro2000/matrix-mjolnir

authored by

Sandro and committed by
GitHub
ab6a7ee4 631d5a4d

+4 -3
+4 -3
pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, matrix-synapse }: 1 + { lib, stdenv, buildPythonPackage, fetchFromGitHub, matrix-synapse }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "matrix-synapse-mjolnir-antispam"; ··· 13 13 14 14 sourceRoot = "./source/synapse_antispam"; 15 15 16 - propagatedBuildInputs = [ matrix-synapse ]; 16 + buildInputs = [ matrix-synapse ]; 17 17 18 18 doCheck = false; # no tests 19 19 pythonImportsCheck = [ "mjolnir" ]; ··· 25 25 Mjolnir's Synapse module is a way to interpret ban lists and apply 26 26 them to your entire homeserver. 27 27 ''; 28 - homepage = "https://github.com/matrix-org/mjolnir#synapse-module"; 28 + homepage = "https://github.com/matrix-org/mjolnir/blob/main/docs/synapse_module.md"; 29 29 license = licenses.asl20; 30 30 maintainers = with maintainers; [ jojosch ]; 31 + broken = stdenv.isDarwin; 31 32 }; 32 33 }