summaryrefslogtreecommitdiff
path: root/pkgs/postfix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkgs/postfix/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/postfix/default.nix b/pkgs/postfix/default.nix
index 39481e7..b625a71 100644
--- a/pkgs/postfix/default.nix
+++ b/pkgs/postfix/default.nix
@@ -1,7 +1,9 @@
-{ postfix }:
+{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
- ];
+ patches =
+ (postfix.patches or [])
+ ++ [
+ ./0001-smtpd-implement-CCERTS-action-for-access-5-tables.patch
+ ];
}