Merge pull request #212391 from chvp/fix/matrix-synapse-systemd

matrix-synapse,mautrix-facebook: fix runtime inclusion of python3 systemd
This commit is contained in:
K900
2023-01-24 15:49:25 +03:00
committed by GitHub
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, python3, openssl, rustPlatform
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform python3.pkgs.systemd
, nixosTests
, enableRedis ? true
, callPackage
+1 -2
View File
@@ -1,10 +1,9 @@
{ lib
, stdenv
, systemd
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
, fetchFromGitHub
, fetchpatch
, python3
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform python3.pkgs.systemd
}:
python3.pkgs.buildPythonPackage rec {