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:
Lane Seppala 2015-06-30 11:11:13 -06:00
parent e46933f554
commit f5268e9f09

View file

@ -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 ];