Merge pull request #295199 from blakesmith/gotosocial_14_2

gotosocial 0.14.1 -> 0.14.2
This commit is contained in:
Pol Dellaiera 2024-03-13 08:53:37 +01:00 committed by GitHub
commit 6710011819
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 6 deletions

View File

@ -2599,6 +2599,12 @@
github = "blaggacao"; github = "blaggacao";
githubId = 7548295; githubId = 7548295;
}; };
blakesmith = {
name = "Blake Smith";
email = "blakesmith0@gmail.com";
github = "blakesmith";
githubId = 44368;
};
blankparticle = { blankparticle = {
name = "BlankParticle"; name = "BlankParticle";
email = "blankparticle@gmail.com"; email = "blankparticle@gmail.com";

View File

@ -27,7 +27,7 @@ let
in in
{ {
meta.doc = ./gotosocial.md; meta.doc = ./gotosocial.md;
meta.maintainers = with lib.maintainers; [ misuzu ]; meta.maintainers = with lib.maintainers; [ misuzu blakesmith ];
options.services.gotosocial = { options.services.gotosocial = {
enable = lib.mkEnableOption (lib.mdDoc "ActivityPub social network server"); enable = lib.mkEnableOption (lib.mdDoc "ActivityPub social network server");

View File

@ -1,7 +1,7 @@
{ lib, ... }: { lib, ... }:
{ {
name = "gotosocial"; name = "gotosocial";
meta.maintainers = with lib.maintainers; [ misuzu ]; meta.maintainers = with lib.maintainers; [ misuzu blakesmith ];
nodes.machine = { pkgs, ... }: { nodes.machine = { pkgs, ... }: {
environment.systemPackages = [ pkgs.jq ]; environment.systemPackages = [ pkgs.jq ];

View File

@ -9,11 +9,11 @@ let
owner = "superseriousbusiness"; owner = "superseriousbusiness";
repo = "gotosocial"; repo = "gotosocial";
version = "0.14.1"; version = "0.14.2";
web-assets = fetchurl { web-assets = fetchurl {
url = "https://github.com/${owner}/${repo}/releases/download/v${version}/${repo}_${version}_web-assets.tar.gz"; url = "https://github.com/${owner}/${repo}/releases/download/v${version}/${repo}_${version}_web-assets.tar.gz";
hash = "sha256-cNO0LuTzgx3CAP+qjTBZ9Fgs4jrH3ypZREpKKipOJDA="; hash = "sha256-3aSOP8BTHdlODQnZr6DOZuybLl+02SWgP9YZ21guAPU=";
}; };
in in
buildGoModule rec { buildGoModule rec {
@ -23,7 +23,7 @@ buildGoModule rec {
src = fetchFromGitHub { src = fetchFromGitHub {
inherit owner repo; inherit owner repo;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-gXriCpLPFBzIWm0xKE2LdT3+VWLNwJAHtT9ZuYO3sDI="; hash = "sha256-oeOxP9FkGsOH66Uk946H0b/zggz536YvRRuo1cINxSM=";
}; };
vendorHash = null; vendorHash = null;
@ -59,7 +59,7 @@ buildGoModule rec {
advertised to! A light-weight alternative to Mastodon advertised to! A light-weight alternative to Mastodon
and Pleroma, with support for clients! and Pleroma, with support for clients!
''; '';
maintainers = with maintainers; [ misuzu ]; maintainers = with maintainers; [ misuzu blakesmith ];
license = licenses.agpl3Only; license = licenses.agpl3Only;
}; };
} }