Update gotosocial to 0.11.0

This commit is contained in:
Natsu Kagami 2023-08-15 15:23:54 +02:00
parent 0551f7e606
commit 91abeee15c
Signed by: nki
GPG key ID: 55A032EB38B49ADB
2 changed files with 3 additions and 2 deletions

View file

@ -26,6 +26,7 @@ let
http-client.block-ips = [ "11.0.0.0/24" ]; http-client.block-ips = [ "11.0.0.0/24" ];
# Advanced # Advanced
advanced-rate-limit-requests = 0; advanced-rate-limit-requests = 0;
# instance-inject-mastodon-version = true;
}); });
in in
{ {

View file

@ -4,11 +4,11 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gotosocial-bin"; pname = "gotosocial-bin";
version = "0.11.0-rc2"; version = "0.11.0";
src = builtins.fetchurl { src = builtins.fetchurl {
url = "https://github.com/superseriousbusiness/gotosocial/releases/download/v${version}/gotosocial_${version}_linux_amd64.tar.gz"; url = "https://github.com/superseriousbusiness/gotosocial/releases/download/v${version}/gotosocial_${version}_linux_amd64.tar.gz";
sha256 = "sha256:0mzhn6p5kvjgbd7xsi28mgpa3yva76i5yjb5czs0fqph839aq45h"; sha256 = "sha256:012qm10x0vz9ir91742c1nhnxv7y4dfxjr9031h8hf1hf463a25h";
# sha256 = fakeSha256; # sha256 = fakeSha256;
}; };