about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorKerstin Humm <kerstin@erictapen.name>2022-03-30 16:13:03 +0200
committerKerstin <kerstin@erictapen.name>2022-03-31 13:17:11 +0200
commitf44b12fb5297944eaf408761df80c98bcbdf3618 (patch)
treee03d6cb4fd69ea5938297ca9ff02eb7a3f3e56e2 /pkgs/servers
parent23a1971a4ecda43c9a16ddf798ecc957fc9bfc38 (diff)
mastodon: use correct GitHub Url
The tootsuite organization was renamed to mastodon ages ago.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/mastodon/source.nix2
-rwxr-xr-xpkgs/servers/mastodon/update.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/mastodon/source.nix b/pkgs/servers/mastodon/source.nix
index 512f11893bf3e..5581742ebe1ec 100644
--- a/pkgs/servers/mastodon/source.nix
+++ b/pkgs/servers/mastodon/source.nix
@@ -1,7 +1,7 @@
 # This file was generated by pkgs.mastodon.updateScript.
 { fetchgit, applyPatches }: let
   src = fetchgit {
-    url = "https://github.com/tootsuite/mastodon.git";
+    url = "https://github.com/mastodon/mastodon.git";
     rev = "v3.5.0";
     sha256 = "1181zqz7928b6mnp4p502gy2rrwxyv5ysgfydx0n04y8wiq00g48";
   };
diff --git a/pkgs/servers/mastodon/update.sh b/pkgs/servers/mastodon/update.sh
index 7d53845a8cba1..77071be6ea901 100755
--- a/pkgs/servers/mastodon/update.sh
+++ b/pkgs/servers/mastodon/update.sh
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 set -e
 
-URL=https://github.com/tootsuite/mastodon.git
+URL=https://github.com/mastodon/mastodon.git
 
 POSITIONAL=()
 while [[ $# -gt 0 ]]; do
@@ -40,7 +40,7 @@ if [[ -z "$VERSION" || -n "$POSITIONAL" ]]; then
     echo "URL may be any path acceptable to 'git clone' and VERSION the"
     echo "semantic version number.  If VERSION is not a revision acceptable to"
     echo "'git checkout', you must provide one in REVISION.  If URL is not"
-    echo "provided, it defaults to https://github.com/tootsuite/mastodon.git."
+    echo "provided, it defaults to https://github.com/mastodon/mastodon.git."
     echo "PATCHES, if provided, should be one or more Nix expressions"
     echo "separated by spaces."
     exit 1