about summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/generic.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/sql/postgresql/generic.nix')
-rw-r--r--pkgs/servers/sql/postgresql/generic.nix56
1 files changed, 28 insertions, 28 deletions
diff --git a/pkgs/servers/sql/postgresql/generic.nix b/pkgs/servers/sql/postgresql/generic.nix
index d7fd28ccb689..b2af6dd53316 100644
--- a/pkgs/servers/sql/postgresql/generic.nix
+++ b/pkgs/servers/sql/postgresql/generic.nix
@@ -43,34 +43,34 @@ stdenv.mkDerivation rec {
   #LC_ALL = "C";
 
   configureFlags = [
-    (mkOther                        "sysconfdir"        "/etc")
-    (mkOther                        "localstatedir"     "/var")
-    (mkEnable true                  "integer-datetimes" null)
-    (mkEnable true                  "nls"               null)
-    (mkWith   true                  "pgport"            "5432")
-    (mkEnable true                  "shared"            null)
-    (mkEnable true                  "rpath"             null)
-    (mkEnable true                  "spinlocks"         null)
-    (mkEnable false                 "debug"             null)
-    (mkEnable false                 "profiling"         null)
-    (mkEnable false                 "coverage"          null)
-    (mkEnable false                 "dtrace"            null)
-    (mkWith   true                  "blocksize"         (toString blockSizeKB))
-    (mkWith   true                  "segsize"           (toString segmentSizeGB))
-    (mkWith   true                  "wal-blocksize"     (toString walBlockSizeKB))
-    (mkWith   true                  "wal-segsize"       (toString walSegmentSizeMB))
-    (mkEnable true                  "autodepend"        null)
-    (mkEnable false                 "cassert"           null)
-    (mkEnable true                  "thread-safety"     null)
-    (mkWith   false                 "tcl"               null)  # Maybe enable some day
-    (mkWith   false                 "perl"              null)  # Maybe enable some day
-    (mkWith   false                 "python"            null)  # Maybe enable some day
-    (mkWith   (optKerberos != null) "gssapi"            null)
-    (mkWith   false                 "krb5"              null)
-    (mkWith   (optPam != null)      "pam"               null)
-    (mkWith   (optOpenldap != null) "ldap"              null)
-    (mkWith   false                 "bonjour"           null)
-    (mkWith   (optOpenssl != null)       "openssl"           null)
+    (mkOther                            "sysconfdir"        "/etc")
+    (mkOther                            "localstatedir"     "/var")
+    (mkEnable true                      "integer-datetimes" null)
+    (mkEnable true                      "nls"               null)
+    (mkWith   true                      "pgport"            "5432")
+    (mkEnable true                      "shared"            null)
+    (mkEnable true                      "rpath"             null)
+    (mkEnable true                      "spinlocks"         null)
+    (mkEnable false                     "debug"             null)
+    (mkEnable false                     "profiling"         null)
+    (mkEnable false                     "coverage"          null)
+    (mkEnable false                     "dtrace"            null)
+    (mkWith   true                      "blocksize"         (toString blockSizeKB))
+    (mkWith   true                      "segsize"           (toString segmentSizeGB))
+    (mkWith   true                      "wal-blocksize"     (toString walBlockSizeKB))
+    (mkWith   true                      "wal-segsize"       (toString walSegmentSizeMB))
+    (mkEnable true                      "depend"            null)
+    (mkEnable false                     "cassert"           null)
+    (mkEnable true                      "thread-safety"     null)
+    (mkWith   false                     "tcl"               null)  # Maybe enable some day
+    (mkWith   false                     "perl"              null)  # Maybe enable some day
+    (mkWith   false                     "python"            null)  # Maybe enable some day
+    (mkWith   (optKerberos != null)     "gssapi"            null)
+    (mkWith   false                     "krb5"              null)
+    (mkWith   (optPam != null)          "pam"               null)
+    (mkWith   (optOpenldap != null)     "ldap"              null)
+    (mkWith   false                     "bonjour"           null)
+    (mkWith   (optOpenssl != null)      "openssl"           null)
     (mkWith   (optReadline != null)     "readline"          null)
     (mkWith   false                     "libedit-preferred" null)
     (mkWith   (optLibossp_uuid != null) "ossp-uuid"         null)