summaryrefslogtreecommitdiff
path: root/pkgs/postfix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkgs/postfix/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/postfix/default.nix b/pkgs/postfix/default.nix
new file mode 100644
index 0000000..39481e7
--- /dev/null
+++ b/pkgs/postfix/default.nix
@@ -0,0 +1,7 @@
+{ postfix }:
+postfix.overrideAttrs {
+ # Nota: hay que cambiar prefix postfix/src/ -> src/ en el patch porque las release tarballs vienen así
+ patches = (postfix.patches or [ ]) ++ [
+ ./0001-smtpd-implement-CCERTS-action-for-access-5-tables.patch
+ ];
+}