From 91c9027691d7e70ecca20b7cc94cf90f2097db79 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Wed, 29 Jan 2014 01:12:41 +0100 Subject: [PATCH] Configure postgresql-9.3 with support for the ossp-uuid module --- pkgs/servers/sql/postgresql/9.3.x.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/9.3.x.nix b/pkgs/servers/sql/postgresql/9.3.x.nix index cb33c6f2921c..a57374ad02c3 100644 --- a/pkgs/servers/sql/postgresql/9.3.x.nix +++ b/pkgs/servers/sql/postgresql/9.3.x.nix @@ -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" ];