rspamd: remove nixspam blocklist

This commit is contained in:
Rouven Seifert 2025-02-15 00:30:43 +01:00
parent 00360fccc2
commit 74c6cec7c6
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09

View file

@ -1,6 +1,7 @@
_final: prev:
let
inherit (prev) fetchurl;
inherit (prev) fetchpatch;
inherit (prev) callPackage;
in
{
@ -40,4 +41,14 @@ in
./hedgedoc/0001-anonymous-uploads.patch
];
});
# patch to remove the nixspam blocklist. Remove after next rspamd release
rspamd = prev.rspamd.overrideAttrs ({ patches ? [ ], ... }: {
patches = patches ++ [
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/rspamd/rspamd/pull/5300.diff";
hash = "sha256-7zY+l5ADLWgPTTBNG/GxX23uX2OwQ33hyzSuokTLgqc=";
})
];
});
}