lol

sharkey: 2025.4.3 -> 2025.4.4 (#431142)

authored by isabelroses.com and committed by

GitHub 0471c45c 45f20ca3

+16 -7
+4 -1
nixos/modules/services/web-apps/sharkey.nix
··· 296 296 }) 297 297 ]); 298 298 299 - meta.maintainers = with lib.maintainers; [ srxl ]; 299 + meta.maintainers = with lib.maintainers; [ 300 + srxl 301 + tmarkus 302 + ]; 300 303 }
+4 -1
nixos/tests/web-apps/sharkey.nix
··· 49 49 machine.succeed("curl --fail http://localhost:3000") 50 50 ''; 51 51 52 - meta.maintainers = with lib.maintainers; [ srxl ]; 52 + meta.maintainers = with lib.maintainers; [ 53 + srxl 54 + tmarkus 55 + ]; 53 56 }
+8 -5
pkgs/by-name/sh/sharkey/package.nix
··· 21 21 22 22 stdenv.mkDerivation (finalAttrs: { 23 23 pname = "sharkey"; 24 - version = "2025.4.3"; 24 + version = "2025.4.4"; 25 25 26 26 src = fetchFromGitLab { 27 27 domain = "activitypub.software"; 28 28 owner = "TransFem-org"; 29 29 repo = "Sharkey"; 30 30 tag = finalAttrs.version; 31 - hash = "sha256-B268bSR5VFyJ/TaWg3xxpnP4oRj07XUpikJZ2Tb9FEY="; 31 + hash = "sha256-h6FkjwJ+TI5NZmGYOl/+yNP7gyc7FKmpdkfXmgqxh/s="; 32 32 fetchSubmodules = true; 33 33 }; 34 34 35 35 pnpmDeps = pnpm_9.fetchDeps { 36 36 inherit (finalAttrs) pname version src; 37 - fetcherVersion = 1; 38 - hash = "sha256-S8LxawbtguFOEZyYbS1FQWw/TcRm4Z6mG7dUhfXbf1c="; 37 + fetcherVersion = 2; 38 + hash = "sha256-34X8oJGkGXB9y7W4MquUkv8vY5yq2RoGIUCbjYppkIU="; 39 39 }; 40 40 41 41 nativeBuildInputs = [ ··· 161 161 license = lib.licenses.agpl3Only; 162 162 platforms = with lib.platforms; linux ++ darwin; 163 163 mainProgram = "sharkey"; 164 - maintainers = with lib.maintainers; [ srxl ]; 164 + maintainers = with lib.maintainers; [ 165 + srxl 166 + tmarkus 167 + ]; 165 168 }; 166 169 })