mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
zammad: fix mail fetch failing with OpenSSL 3.6 (#473133)
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
lib,
|
||||
nixosTests,
|
||||
fetchFromGitHub,
|
||||
fetchpatch,
|
||||
applyPatches,
|
||||
bundlerEnv,
|
||||
callPackage,
|
||||
@@ -28,6 +29,12 @@ let
|
||||
src = fetchFromGitHub (lib.importJSON ./source.json);
|
||||
patches = [
|
||||
./fix-sendmail-location.diff
|
||||
# Fix mail fetch failing with OpenSSL 3.6
|
||||
# https://github.com/zammad/zammad/pull/5888
|
||||
(fetchpatch {
|
||||
url = "https://github.com/zammad/zammad/commit/01376d45f48df057e4377518e6f7e4a0db7de624.patch";
|
||||
hash = "sha256-uH1/t0dP5nvh12GsJz6Yf/RXpf8+hkYoVJnLJAXqpuc=";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
|
||||
Reference in New Issue
Block a user