forked from mirrors/nixpkgs
Enable uuid-ossp in Postgres 9.4 on Darwin
Based on documentation section F.44.2 at http://www.postgresql.org/docs/9.4/static/uuid-ossp.html
This commit is contained in:
parent
e46933f554
commit
f5268e9f09
|
@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
|
|||
makeFlags = [ "world" ];
|
||||
|
||||
configureFlags = [ "--with-openssl" ]
|
||||
++ optional (stdenv.isDarwin) "--with-uuid=e2fs"
|
||||
++ optional (!stdenv.isDarwin) "--with-ossp-uuid";
|
||||
|
||||
patches = [ ./disable-resolve_symlinks-94.patch ./less-is-more.patch ];
|
||||
|
|
Loading…
Reference in a new issue