summary refs log tree commit diff
path: root/pkgs/servers/mail/postfix/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-08-28 15:13:21 +0200
committerPeter Simons <simons@cryp.to>2012-08-28 15:14:59 +0200
commitb920bd538ae381f01ffe5baecac6c3dbdbe9bfa2 (patch)
tree877ec176a4ea1b7a9f1a6ed0da543b4df635df86 /pkgs/servers/mail/postfix/default.nix
parentaa583c8cf4702f8c071b89bb514d4caf453122f8 (diff)
downloadnixpkgs-b920bd538ae381f01ffe5baecac6c3dbdbe9bfa2.tar
nixpkgs-b920bd538ae381f01ffe5baecac6c3dbdbe9bfa2.tar.gz
nixpkgs-b920bd538ae381f01ffe5baecac6c3dbdbe9bfa2.tar.bz2
nixpkgs-b920bd538ae381f01ffe5baecac6c3dbdbe9bfa2.tar.lz
nixpkgs-b920bd538ae381f01ffe5baecac6c3dbdbe9bfa2.tar.xz
nixpkgs-b920bd538ae381f01ffe5baecac6c3dbdbe9bfa2.tar.zst
nixpkgs-b920bd538ae381f01ffe5baecac6c3dbdbe9bfa2.zip
postfix: strip trailing whitespace
Diffstat (limited to 'pkgs/servers/mail/postfix/default.nix')
-rw-r--r--pkgs/servers/mail/postfix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix
index 16d9127e556..6319a60cedb 100644
--- a/pkgs/servers/mail/postfix/default.nix
+++ b/pkgs/servers/mail/postfix/default.nix
@@ -6,7 +6,7 @@ assert stdenv.isLinux;
 
 stdenv.mkDerivation {
   name = "postfix-2.8.6";
-  
+
   src = fetchurl {
     url = ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/postfix-2.8.6.tar.gz;
     sha256 = "1rfsfhna5hy5lc6hkg1zc2862pdc5c1y9z6aiy8rinlmzrfplhlb";
@@ -47,7 +47,7 @@ stdenv.mkDerivation {
   '';
 
   buildInputs = [db4 openssl cyrus_sasl bison perl];
-  
+
   patches = [ ./postfix-2.2.9-db.patch  ./postfix-2.2.9-lib.patch ./db-linux3.patch ];
 
   postPatch = ''
@@ -55,6 +55,6 @@ stdenv.mkDerivation {
       -e s,/usr/sbin,/var/run/current-system/sw/sbin, \
       -e s,:/sbin,, src/util/sys_defs.h
   '';
-  
+
   inherit glibc;
 }