NUR repo for my Nix packages, and some modules.
0

Configure Feed

Select the types of activity you want to include in your feed.

rename gotify plugins and add slack-webhook plugin

Adam0 (Jun 10, 2026, 4:15 PM +0200) 04dc95bb b8a91349

+34 -3
+3 -1
pkgs/gotify-server/plugins/default.nix
··· 47 47 patchedSrc = stdenvNoCC.mkDerivation { 48 48 name = "${pname}-patched-src"; 49 49 inherit src; 50 + 50 51 nativeBuildInputs = [go]; 52 + 51 53 outputHashAlgo = "sha256"; 52 54 outputHashMode = "recursive"; 53 55 outputHash = patchedSourceHash; ··· 84 86 # keep-sorted end 85 87 ]) 86 88 // { 87 - pname = "gotify-${pname}"; 89 + inherit pname; 88 90 src = patchedSrc; 89 91 inherit vendorHash version; 90 92
+1 -1
pkgs/gotify-server/plugins/gotify-authentik-plugin/default.nix pkgs/gotify-server/plugins/authentik/default.nix
··· 6 6 # keep-sorted end 7 7 }: 8 8 mkGotifyPlugin { 9 - pname = "authentik-plugin"; 9 + pname = "authentik"; 10 10 version = "2.9.1-unstable-2026-06-09"; 11 11 12 12 src = fetchFromGitHub {
+1 -1
pkgs/gotify-server/plugins/gotify-webhooks-plugin/default.nix pkgs/gotify-server/plugins/webhooks/default.nix
··· 6 6 # keep-sorted end 7 7 }: 8 8 mkGotifyPlugin { 9 - pname = "webhooks-plugin"; 9 + pname = "webhooks"; 10 10 version = "1.1.3"; 11 11 12 12 src = fetchgit {
+29
pkgs/gotify-server/plugins/slack-webhook/default.nix
··· 1 + { 2 + # keep-sorted start 3 + fetchFromGitHub, 4 + lib, 5 + mkGotifyPlugin, 6 + # keep-sorted end 7 + }: 8 + mkGotifyPlugin { 9 + pname = "slack-webhook"; 10 + version = "0.0.2"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "NilsGriebner"; 14 + repo = "gotify-slack-webhook"; 15 + rev = "0.0.2"; 16 + hash = "sha256-Pehj9WFTcAdFf/RqULdTmYEMhKjYRmos9/5n8/cb1Cw="; 17 + }; 18 + 19 + patchedSourceHash = "sha256-mof+JC04lGT5gxA1JmvlQ+CZ2wAArdoPUlCHtv5bz10="; 20 + vendorHash = "sha256-Pop8R92hfEFZnht7Fd0i990EZwclex8yxu0H5h384Io="; 21 + 22 + meta = { 23 + # keep-sorted start 24 + description = "Gotify plugin that sends push messages to Slack via webhooks"; 25 + homepage = "https://github.com/NilsGriebner/gotify-slack-webhook"; 26 + license = lib.licenses.mit; 27 + # keep-sorted end 28 + }; 29 + }