Skip to content

Commit

Permalink
always build against tzdata
Browse files Browse the repository at this point in the history
  • Loading branch information
dingxiangfei2009 committed Jul 30, 2018
1 parent 56aa3b4 commit e8682ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/sql/postgresql/default.nix
Expand Up @@ -30,10 +30,10 @@ let
"--with-libxml"
"--sysconfdir=/etc"
"--libdir=$(lib)/lib"
"--with-system-tzdata=${tzdata}"
]
++ lib.optional stdenv.isDarwin "--with-uuid=e2fs"
++ lib.optional (!stdenv.isDarwin) "--with-ossp-uuid"
++ lib.optional stdenv.isCross "--with-system-tzdata=${tzdata}";
++ lib.optional (!stdenv.isDarwin) "--with-ossp-uuid";

patches =
[ (if atLeast "9.4" then ./disable-resolve_symlinks-94.patch else ./disable-resolve_symlinks.patch)
Expand Down

0 comments on commit e8682ca

Please sign in to comment.