From 295952fd5102dec076c1bbf3400c3e1009b2f5ac Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 2 Feb 2024 03:06:53 +0100 Subject: [PATCH] synapse-matrix: have a valid `meta` attribute Previously, only the unwrapped derivation had it. This is problematic to report issues on Synapse because you cannot read the maintainers from the REPL. :) Signed-off-by: Raito Bezarius --- pkgs/servers/matrix-synapse/wrapper.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/matrix-synapse/wrapper.nix b/pkgs/servers/matrix-synapse/wrapper.nix index 5b7ce47b367c..55d280e0ec65 100644 --- a/pkgs/servers/matrix-synapse/wrapper.nix +++ b/pkgs/servers/matrix-synapse/wrapper.nix @@ -41,4 +41,7 @@ stdenv.mkDerivation { # for backward compatibility inherit (matrix-synapse-unwrapped) plugins tools; }; + + # Carry the maintainer, licenses, and various useful information. + inherit (matrix-synapse-unwrapped) meta; }