about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-12-13 17:48:09 -0500
committerNick Cao <nickcao@nichi.co>2023-12-13 17:48:09 -0500
commit51edd222c2dddcf2c0f58a589cdfa4c59a98a532 (patch)
tree4a7b510a159564dd13a023e2cc074d8f76f7d929 /pkgs
parent824052b19345fe5c138ac975f560cf1f7cdfcb2f (diff)
downloadnixlib-51edd222c2dddcf2c0f58a589cdfa4c59a98a532.tar
nixlib-51edd222c2dddcf2c0f58a589cdfa4c59a98a532.tar.gz
nixlib-51edd222c2dddcf2c0f58a589cdfa4c59a98a532.tar.bz2
nixlib-51edd222c2dddcf2c0f58a589cdfa4c59a98a532.tar.lz
nixlib-51edd222c2dddcf2c0f58a589cdfa4c59a98a532.tar.xz
nixlib-51edd222c2dddcf2c0f58a589cdfa4c59a98a532.tar.zst
nixlib-51edd222c2dddcf2c0f58a589cdfa4c59a98a532.zip
matrix-synapse: replace references to matrix-org/synapse with element-hq/synapse
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/matrix-synapse/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
index a51ea5a9269c..d5f3c379f344 100644
--- a/pkgs/servers/matrix-synapse/default.nix
+++ b/pkgs/servers/matrix-synapse/default.nix
@@ -21,7 +21,7 @@ python3.pkgs.buildPythonApplication rec {
   format = "pyproject";
 
   src = fetchFromGitHub {
-    owner = "matrix-org";
+    owner = "element-hq";
     repo = "synapse";
     rev = "v${version}";
     hash = "sha256-irPExb8rwQjkPp0b3x5hJG4Ay6OnITWIGRPxBSoP/Dk=";
@@ -35,7 +35,7 @@ python3.pkgs.buildPythonApplication rec {
 
   postPatch = ''
     # Remove setuptools_rust from runtime dependencies
-    # https://github.com/matrix-org/synapse/blob/v1.69.0/pyproject.toml#L177-L185
+    # https://github.com/element-hq/synapse/blob/v1.69.0/pyproject.toml#L177-L185
     sed -i '/^setuptools_rust =/d' pyproject.toml
 
     # Remove version pin on build dependencies. Upstream does this on purpose to
@@ -149,7 +149,7 @@ python3.pkgs.buildPythonApplication rec {
 
     # high parallelisem makes test suite unstable
     # upstream uses 2 cores but 4 seems to be also stable
-    # https://github.com/matrix-org/synapse/blob/develop/.github/workflows/latest_deps.yml#L103
+    # https://github.com/element-hq/synapse/blob/develop/.github/workflows/latest_deps.yml#L103
     if (( $NIX_BUILD_CORES > 4)); then
       NIX_BUILD_CORES=4
     fi
@@ -167,7 +167,7 @@ python3.pkgs.buildPythonApplication rec {
 
   meta = with lib; {
     homepage = "https://matrix.org";
-    changelog = "https://github.com/matrix-org/synapse/releases/tag/v${version}";
+    changelog = "https://github.com/element-hq/synapse/releases/tag/v${version}";
     description = "Matrix reference homeserver";
     license = licenses.asl20;
     maintainers = teams.matrix.members;