Delete 212391.patch
This commit is contained in:
parent
7d63fe0835
commit
1ac8f5e29d
1 changed files with 0 additions and 42 deletions
|
@ -1,42 +0,0 @@
|
||||||
From b6f35193842a0bd634c058e5604a1b3647ac5ea9 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Charlotte Van Petegem <charlotte.vanpetegem@ugent.be>
|
|
||||||
Date: Tue, 24 Jan 2023 09:44:36 +0100
|
|
||||||
Subject: [PATCH] matrix-synapse,mautrix-facebook: fix runtime inclusion of
|
|
||||||
python3 systemd
|
|
||||||
|
|
||||||
https://github.com/NixOS/nixpkgs/pull/192197 broke these packages by adding
|
|
||||||
systemd as a dependency. This meant that the included package was no longer the
|
|
||||||
python3 systemd package, but the general systemd derivation. This broke the
|
|
||||||
packages at runtime. This PR fixes that.
|
|
||||||
---
|
|
||||||
pkgs/servers/matrix-synapse/default.nix | 2 +-
|
|
||||||
pkgs/servers/mautrix-facebook/default.nix | 3 +--
|
|
||||||
2 files changed, 2 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
|
|
||||||
index 18041897f2327..9fc2c676b9464 100644
|
|
||||||
--- a/pkgs/servers/matrix-synapse/default.nix
|
|
||||||
+++ b/pkgs/servers/matrix-synapse/default.nix
|
|
||||||
@@ -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
|
|
||||||
diff --git a/pkgs/servers/mautrix-facebook/default.nix b/pkgs/servers/mautrix-facebook/default.nix
|
|
||||||
index fcef839a9ddf9..017501ded007b 100644
|
|
||||||
--- a/pkgs/servers/mautrix-facebook/default.nix
|
|
||||||
+++ b/pkgs/servers/mautrix-facebook/default.nix
|
|
||||||
@@ -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 {
|
|
Loading…
Add table
Add a link
Reference in a new issue