about summary refs log tree commit diff
path: root/pkgs/servers/matrix-synapse
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-09-10 16:14:04 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-09-10 16:14:04 +0200
commit7e8a5f3403981b0eba8c58c5dd116afaa43f6beb (patch)
tree8b4def75792f43fe79aa03c8278ec12dd352ac75 /pkgs/servers/matrix-synapse
parent86655c6b75c749d8a30ef19eff1a6499996f84af (diff)
matrix-synapse.plugins.matrix-synapse-s3-storage-provider: use matrix-synapse-unwrapped
Diffstat (limited to 'pkgs/servers/matrix-synapse')
-rw-r--r--pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix b/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix
index 32e6a64f0001c..42d62539b6b31 100644
--- a/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix
+++ b/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix
@@ -3,7 +3,7 @@
 , buildPythonPackage
 , fetchFromGitHub
 , humanize
-, matrix-synapse
+, matrix-synapse-unwrapped
 , pythonOlder
 , tqdm
 , twisted
@@ -29,7 +29,7 @@ buildPythonPackage rec {
   '';
 
   buildInputs = [
-    matrix-synapse
+    matrix-synapse-unwrapped
   ];
 
   propagatedBuildInputs = [
@@ -39,7 +39,7 @@ buildPythonPackage rec {
     twisted
   ]
   # For the s3_media_upload script
-  ++ matrix-synapse.propagatedBuildInputs;
+  ++ matrix-synapse-unwrapped.propagatedBuildInputs;
 
   # Tests need network access
   doCheck = false;