Configure postgresql-9.3 with support for the ossp-uuid module

This commit is contained in:
Bas van Dijk 2014-01-29 01:12:41 +01:00
parent f88de3b091
commit 91c9027691

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, zlib, readline }:
{ stdenv, fetchurl, zlib, readline, libossp_uuid }:
let version = "9.3.2"; in
@ -10,12 +10,17 @@ stdenv.mkDerivation rec {
sha256 = "700da51a71857e092f6af1c85fcd86b46d7d5cd2f2ba343cafb1f206c20232d7";
};
buildInputs = [ zlib readline ];
buildInputs = [ zlib readline libossp_uuid ];
enableParallelBuilding = true;
makeFlags = [ "world" ];
configureFlags =
''
--with-ossp-uuid
'';
patches = [ ./disable-resolve_symlinks.patch ];
installTargets = [ "install-world" ];