Configure postgresql-9.3 with support for the ossp-uuid module
This commit is contained in:
parent
f88de3b091
commit
91c9027691
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, zlib, readline }:
|
{ stdenv, fetchurl, zlib, readline, libossp_uuid }:
|
||||||
|
|
||||||
let version = "9.3.2"; in
|
let version = "9.3.2"; in
|
||||||
|
|
||||||
@ -10,12 +10,17 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "700da51a71857e092f6af1c85fcd86b46d7d5cd2f2ba343cafb1f206c20232d7";
|
sha256 = "700da51a71857e092f6af1c85fcd86b46d7d5cd2f2ba343cafb1f206c20232d7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib readline ];
|
buildInputs = [ zlib readline libossp_uuid ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
makeFlags = [ "world" ];
|
makeFlags = [ "world" ];
|
||||||
|
|
||||||
|
configureFlags =
|
||||||
|
''
|
||||||
|
--with-ossp-uuid
|
||||||
|
'';
|
||||||
|
|
||||||
patches = [ ./disable-resolve_symlinks.patch ];
|
patches = [ ./disable-resolve_symlinks.patch ];
|
||||||
|
|
||||||
installTargets = [ "install-world" ];
|
installTargets = [ "install-world" ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user