rspamd: remove nixspam blocklist (#382820)

This commit is contained in:
Martin Weinelt 2025-02-17 17:26:15 +01:00 committed by GitHub
commit 137da20d91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
stdenv,
lib,
fetchFromGitHub,
fetchpatch,
cmake,
doctest,
fmt_11,
@ -39,6 +40,14 @@ stdenv.mkDerivation rec {
hash = "sha256-id5nmxdqx+0m0JCCvwaEuUAQkMLTlWadfieJ0wO/wJI=";
};
patches = [
# remove https://www.nixspam.net/ because it has been shutdown
(fetchpatch {
url = "https://github.com/rspamd/rspamd/commit/dc6e7494c2440cd6c4e474b5ee3c4fabdad1f6bf.patch";
hash = "sha256-7zY+l5ADLWgPTTBNG/GxX23uX2OwQ33hyzSuokTLgqc=";
})
];
hardeningEnable = [ "pie" ];
nativeBuildInputs = [