lol

Merge pull request #146457 from nh2/ntfy-fix-slack-integration

ntfy: Patch Slack integration to work again.

authored by

Niklas Hambüchen and committed by
GitHub
d6d14adc 582e8bc5

+12 -1
+12 -1
pkgs/tools/misc/ntfy/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub }: 1 + { lib, python3Packages, fetchFromGitHub, fetchpatch }: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "ntfy"; ··· 23 23 matrix-client 24 24 dbus-python 25 25 ntfy-webpush 26 + slack-sdk 27 + ]; 28 + 29 + patches = [ 30 + # Fix Slack integration no longer working. 31 + # From https://github.com/dschep/ntfy/pull/229 - "Swap Slacker for Slack SDK" 32 + (fetchpatch { 33 + name = "ntfy-Swap-Slacker-for-Slack-SDK.patch"; 34 + url = "https://github.com/dschep/ntfy/commit/2346e7cfdca84c8f1afc7462a92145c1789deb3e.patch"; 35 + sha256 = "13k7jbsdx0jx7l5s8whirric76hml5bznkfcxab5xdp88q52kpk7"; 36 + }) 26 37 ]; 27 38 28 39 checkPhase = ''