Merge pull request #106315 from maralorn/rscs

rust-synapse-compress-state: init at 0.1.0
This commit is contained in:
Martin Weinelt
2020-12-09 22:27:39 +01:00
committed by GitHub
4 changed files with 31 additions and 0 deletions
+3
View File
@@ -1,12 +1,14 @@
{ lib, stdenv, python3, openssl
, enableSystemd ? stdenv.isLinux, nixosTests
, enableRedis ? false
, callPackage
}:
with python3.pkgs;
let
plugins = python3.pkgs.callPackage ./plugins { };
tools = callPackage ./tools { };
in
buildPythonApplication rec {
pname = "matrix-synapse";
@@ -68,6 +70,7 @@ buildPythonApplication rec {
passthru.tests = { inherit (nixosTests) matrix-synapse; };
passthru.plugins = plugins;
passthru.tools = tools;
passthru.python = python3;
meta = with stdenv.lib; {