mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
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
|
||||
|
||||
@ -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" ];
|
||||
|
Loading…
Reference in New Issue
Block a user