about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorLane Seppala <lane@helium.com>2015-06-30 11:11:13 -0600
committerLane Seppala <lane@helium.com>2015-06-30 11:16:39 -0600
commitf5268e9f094e61c91c8e777c714503755d1af818 (patch)
tree057a3c6fe6f8dc86fd22abf6b83b47d9c34450c2 /pkgs/servers
parente46933f5546b23dfea1a586a4abec9de583f582b (diff)
downloadnixlib-f5268e9f094e61c91c8e777c714503755d1af818.tar
nixlib-f5268e9f094e61c91c8e777c714503755d1af818.tar.gz
nixlib-f5268e9f094e61c91c8e777c714503755d1af818.tar.bz2
nixlib-f5268e9f094e61c91c8e777c714503755d1af818.tar.lz
nixlib-f5268e9f094e61c91c8e777c714503755d1af818.tar.xz
nixlib-f5268e9f094e61c91c8e777c714503755d1af818.tar.zst
nixlib-f5268e9f094e61c91c8e777c714503755d1af818.zip
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
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/sql/postgresql/9.4.x.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/servers/sql/postgresql/9.4.x.nix b/pkgs/servers/sql/postgresql/9.4.x.nix
index 5c795329b2d4..cdb689fc110b 100644
--- a/pkgs/servers/sql/postgresql/9.4.x.nix
+++ b/pkgs/servers/sql/postgresql/9.4.x.nix
@@ -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 ];