postgresql: Fix nits after cross fixes

This commit is contained in:
John Ericson
2018-08-02 16:22:42 -04:00
parent 40c2bf6e42
commit f539c30095
2 changed files with 5 additions and 8 deletions

View File

@@ -30,9 +30,8 @@ let
"--sysconfdir=/etc"
"--libdir=$(lib)/lib"
"--with-system-tzdata=${tzdata}"
] ++ (
if stdenv.isDarwin then [ "--with-uuid=e2fs" ] else [ "--with-ossp-uuid" ]
);
(if stdenv.isDarwin then "--with-uuid=e2fs" else "--with-ossp-uuid")
];
patches =
[ (if atLeast "9.4" then ./disable-resolve_symlinks-94.patch else ./disable-resolve_symlinks.patch)